| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, 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 class ScannerTask extends CompilerTask { | 5 class ScannerTask extends CompilerTask { |
| 6 ScannerTask(Compiler compiler) : super(compiler); | 6 ScannerTask(Compiler compiler) : super(compiler); |
| 7 String get name => 'Scanner'; | 7 String get name => 'Scanner'; |
| 8 | 8 |
| 9 final Map<String, LibraryElement> libraryNames = | 9 final Map<String, LibraryElement> libraryNames = |
| 10 new Map<String, LibraryElement>(); | 10 new Map<String, LibraryElement>(); |
| (...skipping 232 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 243 static const int RESOURCE = 4; | 243 static const int RESOURCE = 4; |
| 244 | 244 |
| 245 /** Next state. */ | 245 /** Next state. */ |
| 246 static const List<int> NEXT = | 246 static const List<int> NEXT = |
| 247 const <int>[NO_TAG_SEEN, | 247 const <int>[NO_TAG_SEEN, |
| 248 IMPORT, // Only one library tag is allowed. | 248 IMPORT, // Only one library tag is allowed. |
| 249 IMPORT, | 249 IMPORT, |
| 250 SOURCE, | 250 SOURCE, |
| 251 RESOURCE]; | 251 RESOURCE]; |
| 252 } | 252 } |
| OLD | NEW |