| Index: test/dart_codegen/expect/async/deferred_load.dart
|
| diff --git a/test/dart_codegen/expect/async/deferred_load.dart b/test/dart_codegen/expect/async/deferred_load.dart
|
| index a6624a58ef0db0429cc94b86215046b34c2f808f..76a9d7280e76cc87b464e06321534a641abd1540 100644
|
| --- a/test/dart_codegen/expect/async/deferred_load.dart
|
| +++ b/test/dart_codegen/expect/async/deferred_load.dart
|
| @@ -1,16 +1,14 @@
|
| part of dart.async;
|
| -
|
| -@Deprecated("Dart sdk v. 1.8")
|
| -class DeferredLibrary {
|
| - final String libraryName;
|
| - final String uri;
|
| - const DeferredLibrary(this.libraryName, {this.uri});
|
| - Future<Null> load() {
|
| - throw 'DeferredLibrary not supported. ' 'please use the `import "lib.dart" deferred as lib` syntax.';
|
| + @Deprecated("Dart sdk v. 1.8") class DeferredLibrary {final String libraryName;
|
| + final String uri;
|
| + const DeferredLibrary(this.libraryName, {
|
| + this.uri}
|
| +);
|
| + Future<Null> load() {
|
| + throw 'DeferredLibrary not supported. ' 'please use the `import "lib.dart" deferred as lib` syntax.';
|
| }
|
| }
|
| -class DeferredLoadException implements Exception {
|
| - DeferredLoadException(String this._s);
|
| - String toString() => "DeferredLoadException: '$_s'";
|
| - final String _s;
|
| + class DeferredLoadException implements Exception {DeferredLoadException(String this._s);
|
| + String toString() => "DeferredLoadException: '$_s'";
|
| + final String _s;
|
| }
|
|
|