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 20 matching lines...) Expand all Loading... |
31 import '../elements/visitor.dart' | 31 import '../elements/visitor.dart' |
32 show ElementVisitor; | 32 show ElementVisitor; |
33 import '../dart2jslib.dart'; | 33 import '../dart2jslib.dart'; |
34 import '../native/native.dart' as native; | 34 import '../native/native.dart' as native; |
35 import '../string_validator.dart'; | 35 import '../string_validator.dart'; |
36 import '../tree/tree.dart'; | 36 import '../tree/tree.dart'; |
37 import '../util/characters.dart'; | 37 import '../util/characters.dart'; |
38 import '../util/util.dart'; | 38 import '../util/util.dart'; |
39 import '../io/source_file.dart' show SourceFile, Utf8BytesSourceFile; | 39 import '../io/source_file.dart' show SourceFile, Utf8BytesSourceFile; |
40 import 'dart:convert' show UTF8, UNICODE_BOM_CHARACTER_RUNE; | 40 import 'dart:convert' show UTF8, UNICODE_BOM_CHARACTER_RUNE; |
41 import 'dart:typed_data' show Uint8List; | |
42 | 41 |
43 part 'class_element_parser.dart'; | 42 part 'class_element_parser.dart'; |
44 part 'keyword.dart'; | 43 part 'keyword.dart'; |
45 part 'listener.dart'; | 44 part 'listener.dart'; |
46 part 'parser.dart'; | 45 part 'parser.dart'; |
47 part 'parser_task.dart'; | 46 part 'parser_task.dart'; |
48 part 'partial_parser.dart'; | 47 part 'partial_parser.dart'; |
49 part 'scanner.dart'; | 48 part 'scanner.dart'; |
50 part 'scanner_task.dart'; | 49 part 'scanner_task.dart'; |
51 part 'array_based_scanner.dart'; | 50 part 'array_based_scanner.dart'; |
52 part 'utf8_bytes_scanner.dart'; | 51 part 'utf8_bytes_scanner.dart'; |
53 part 'string_scanner.dart'; | 52 part 'string_scanner.dart'; |
54 part 'token.dart'; | 53 part 'token.dart'; |
OLD | NEW |