| 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 LinkedHashMap; |
| 7 import 'dart:uri'; | 8 import 'dart:uri'; |
| 8 | 9 |
| 9 import 'scanner_implementation.dart'; | 10 import 'scanner_implementation.dart'; |
| 10 import '../elements/elements.dart'; | 11 import '../elements/elements.dart'; |
| 11 import '../elements/modelx.dart' | 12 import '../elements/modelx.dart' |
| 12 show FunctionElementX, | 13 show FunctionElementX, |
| 13 TypedefElementX, | 14 TypedefElementX, |
| 14 VariableElementX, | 15 VariableElementX, |
| 15 VariableListElementX, | 16 VariableListElementX, |
| 16 ClassElementX, | 17 ClassElementX, |
| (...skipping 11 matching lines...) Expand all Loading... |
| 28 part 'class_element_parser.dart'; | 29 part 'class_element_parser.dart'; |
| 29 part 'keyword.dart'; | 30 part 'keyword.dart'; |
| 30 part 'listener.dart'; | 31 part 'listener.dart'; |
| 31 part 'parser.dart'; | 32 part 'parser.dart'; |
| 32 part 'parser_task.dart'; | 33 part 'parser_task.dart'; |
| 33 part 'partial_parser.dart'; | 34 part 'partial_parser.dart'; |
| 34 part 'scanner.dart'; | 35 part 'scanner.dart'; |
| 35 part 'scanner_task.dart'; | 36 part 'scanner_task.dart'; |
| 36 part 'string_scanner.dart'; | 37 part 'string_scanner.dart'; |
| 37 part 'token.dart'; | 38 part 'token.dart'; |
| OLD | NEW |