OLD | NEW |
1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 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 | 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. | 3 // BSD-style license that can be found in the LICENSE file. |
4 | 4 |
5 library scanner; | 5 library scanner; |
6 | 6 |
7 import 'dart:collection' show IterableBase, HashSet; | 7 import 'dart:collection' show IterableBase, HashSet; |
8 | 8 |
9 import '../dart_types.dart' show DynamicType; | 9 import '../dart_types.dart' show DynamicType; |
10 import '../elements/elements.dart'; | 10 import '../elements/elements.dart'; |
(...skipping 14 matching lines...) Loading... |
25 VariableList; | 25 VariableList; |
26 | 26 |
27 import '../elements/visitor.dart' | 27 import '../elements/visitor.dart' |
28 show ElementVisitor; | 28 show ElementVisitor; |
29 import '../dart2jslib.dart'; | 29 import '../dart2jslib.dart'; |
30 import '../native/native.dart' as native; | 30 import '../native/native.dart' as native; |
31 import '../string_validator.dart'; | 31 import '../string_validator.dart'; |
32 import '../tree/tree.dart'; | 32 import '../tree/tree.dart'; |
33 import '../util/characters.dart'; | 33 import '../util/characters.dart'; |
34 import '../util/util.dart'; | 34 import '../util/util.dart'; |
35 import '../source_file.dart' show SourceFile, Utf8BytesSourceFile; | 35 import '../io/source_file.dart' show SourceFile, Utf8BytesSourceFile; |
36 import 'dart:convert' show UTF8, UNICODE_BOM_CHARACTER_RUNE; | 36 import 'dart:convert' show UTF8, UNICODE_BOM_CHARACTER_RUNE; |
37 import 'dart:typed_data' show Uint8List; | 37 import 'dart:typed_data' show Uint8List; |
38 | 38 |
39 part 'class_element_parser.dart'; | 39 part 'class_element_parser.dart'; |
40 part 'keyword.dart'; | 40 part 'keyword.dart'; |
41 part 'listener.dart'; | 41 part 'listener.dart'; |
42 part 'parser.dart'; | 42 part 'parser.dart'; |
43 part 'parser_task.dart'; | 43 part 'parser_task.dart'; |
44 part 'partial_parser.dart'; | 44 part 'partial_parser.dart'; |
45 part 'scanner.dart'; | 45 part 'scanner.dart'; |
46 part 'scanner_task.dart'; | 46 part 'scanner_task.dart'; |
47 part 'array_based_scanner.dart'; | 47 part 'array_based_scanner.dart'; |
48 part 'utf8_bytes_scanner.dart'; | 48 part 'utf8_bytes_scanner.dart'; |
49 part 'string_scanner.dart'; | 49 part 'string_scanner.dart'; |
50 part 'token.dart'; | 50 part 'token.dart'; |
OLD | NEW |