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

Side by Side Diff: tests/compiler/dart2js/unparser2_test.dart

Issue 1313073007: Move parser and token related libraries into their own subfolder. (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Fix unittests and try Created 5 years, 3 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
« no previous file with comments | « tests/compiler/dart2js/scanner_test.dart ('k') | tests/try/poi/apply_updates_test.dart » ('j') | 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 import "package:expect/expect.dart"; 5 import "package:expect/expect.dart";
6 import "package:compiler/src/scanner/listener.dart"; 6 import "package:compiler/src/parser/listener.dart";
7 import "package:compiler/src/scanner/parser.dart"; 7 import "package:compiler/src/parser/parser.dart";
8 import "package:compiler/src/scanner/string_scanner.dart"; 8 import "package:compiler/src/scanner/string_scanner.dart";
9 import "package:compiler/src/scanner/token.dart"; 9 import "package:compiler/src/tokens/token.dart";
10 import "package:compiler/src/tree/tree.dart"; 10 import "package:compiler/src/tree/tree.dart";
11 11
12 import "package:compiler/src/diagnostics/diagnostic_listener.dart"; 12 import "package:compiler/src/diagnostics/diagnostic_listener.dart";
13 import "package:compiler/src/elements/elements.dart" 13 import "package:compiler/src/elements/elements.dart"
14 show CompilationUnitElement, 14 show CompilationUnitElement,
15 LibraryElement; 15 LibraryElement;
16 import "package:compiler/src/elements/modelx.dart" 16 import "package:compiler/src/elements/modelx.dart"
17 show CompilationUnitElementX, 17 show CompilationUnitElementX,
18 LibraryElementX; 18 LibraryElementX;
19 import "package:compiler/src/script.dart"; 19 import "package:compiler/src/script.dart";
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
108 messages.add(reason); 108 messages.add(reason);
109 throw reason; 109 throw reason;
110 } 110 }
111 111
112 void log(message) { 112 void log(message) {
113 messages.add(message); 113 messages.add(message);
114 } 114 }
115 115
116 noSuchMethod(Invocation invocation) => throw 'unsupported operation'; 116 noSuchMethod(Invocation invocation) => throw 'unsupported operation';
117 } 117 }
OLDNEW
« no previous file with comments | « tests/compiler/dart2js/scanner_test.dart ('k') | tests/try/poi/apply_updates_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698