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

Side by Side Diff: test/dart_codegen/expect/async/deferred_load.dart

Issue 963593002: Disable formatting and add new-lines to make tests faster. (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Created 5 years, 10 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
OLDNEW
1 part of dart.async; 1 part of dart.async;
2 2 @Deprecated("Dart sdk v. 1.8") class DeferredLibrary {final String libraryName;
3 @Deprecated("Dart sdk v. 1.8") 3 final String uri;
4 class DeferredLibrary { 4 const DeferredLibrary(this.libraryName, {
5 final String libraryName; 5 this.uri}
6 final String uri; 6 );
7 const DeferredLibrary(this.libraryName, {this.uri}); 7 Future<Null> load() {
8 Future<Null> load() { 8 throw 'DeferredLibrary not supported. ' 'please use the `import "lib.dart" def erred as lib` syntax.';
9 throw 'DeferredLibrary not supported. ' 'please use the `import "lib.dart" d eferred as lib` syntax.';
10 } 9 }
11 } 10 }
12 class DeferredLoadException implements Exception { 11 class DeferredLoadException implements Exception {DeferredLoadException(String this._s);
13 DeferredLoadException(String this._s); 12 String toString() => "DeferredLoadException: '$_s'";
14 String toString() => "DeferredLoadException: '$_s'"; 13 final String _s;
15 final String _s;
16 } 14 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698