OLD | NEW |
| (Empty) |
1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | |
2 // for details. All rights reserved. Use of this source code is governed by a | |
3 // BSD-style license that can be found in the LICENSE file. | |
4 | |
5 library scanner; | |
6 | |
7 import 'dart:collection' show IterableBase, HashSet; | |
8 | |
9 import '../common/tasks.dart' show | |
10 CompilerTask; | |
11 import '../compiler.dart' show | |
12 Compiler; | |
13 import '../dart_types.dart' show DynamicType; | |
14 import '../diagnostics/diagnostic_listener.dart'; | |
15 import '../diagnostics/invariant.dart' show | |
16 invariant; | |
17 import '../diagnostics/messages.dart'; | |
18 import '../diagnostics/spannable.dart' show | |
19 Spannable, | |
20 SpannableAssertionFailure; | |
21 import '../elements/elements.dart'; | |
22 | |
23 import '../elements/modelx.dart' show | |
24 BaseFunctionElementX, | |
25 ClassElementX, | |
26 CompilationUnitElementX, | |
27 ConstructorElementX, | |
28 DeclarationSite, | |
29 ElementX, | |
30 EnumClassElementX, | |
31 FieldElementX, | |
32 GetterElementX, | |
33 MethodElementX, | |
34 LibraryElementX, | |
35 MetadataAnnotationX, | |
36 MixinApplicationElementX, | |
37 SetterElementX, | |
38 TypedefElementX, | |
39 VariableElementX, | |
40 VariableList; | |
41 | |
42 import '../elements/visitor.dart' | |
43 show ElementVisitor; | |
44 import '../native/native.dart' as native; | |
45 import '../string_validator.dart'; | |
46 import '../script.dart'; | |
47 import '../tree/tree.dart'; | |
48 import '../util/characters.dart'; | |
49 import '../util/util.dart'; | |
50 import '../io/source_file.dart' show SourceFile, Utf8BytesSourceFile; | |
51 import 'dart:convert' show UTF8, UNICODE_BOM_CHARACTER_RUNE; | |
52 | |
53 part 'class_element_parser.dart'; | |
54 part 'keyword.dart'; | |
55 part 'listener.dart'; | |
56 part 'parser.dart'; | |
57 part 'parser_task.dart'; | |
58 part 'partial_parser.dart'; | |
59 part 'scanner.dart'; | |
60 part 'scanner_task.dart'; | |
61 part 'array_based_scanner.dart'; | |
62 part 'utf8_bytes_scanner.dart'; | |
63 part 'string_scanner.dart'; | |
64 part 'token.dart'; | |
OLD | NEW |