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

Side by Side Diff: tests/try/poi/compiler_test_case.dart

Issue 1417323005: Rename Compiler.runCompiler -> runInternal. (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Created 5 years, 1 month 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
OLDNEW
1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2014, 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 // Helper class for writing compiler tests. 5 // Helper class for writing compiler tests.
6 library trydart.compiler_test_case; 6 library trydart.compiler_test_case;
7 7
8 import 'dart:async' show 8 import 'dart:async' show
9 Future; 9 Future;
10 10
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
71 } 71 }
72 return library; 72 return library;
73 }); 73 });
74 } 74 }
75 75
76 Future run(); 76 Future run();
77 77
78 /// Returns a future for the mainApp after running the compiler. 78 /// Returns a future for the mainApp after running the compiler.
79 Future<LibraryElement> compile() { 79 Future<LibraryElement> compile() {
80 return loadMainApp().then((LibraryElement library) { 80 return loadMainApp().then((LibraryElement library) {
81 return compiler.runCompiler(scriptUri).then((_) => library); 81 return compiler.run(scriptUri).then((_) => library);
82 }); 82 });
83 } 83 }
84 84
85 String toString() => source; 85 String toString() => source;
86 } 86 }
OLDNEW
« pkg/compiler/lib/src/compiler.dart ('K') | « tests/compiler/dart2js/union_type_test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698