Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(130)

Side by Side Diff: lib/compiler/implementation/library_loader.dart

Issue 11092045: Copy to make benefit of glorious subversion (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698