| OLD | NEW |
| 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 // Smoke test of the dart2js compiler API. | 5 // Smoke test of the dart2js compiler API. |
| 6 library dummy_compiler; | 6 library dummy_compiler; |
| 7 | 7 |
| 8 import 'dart:async'; | 8 import 'dart:async'; |
| 9 import 'dart:uri'; | 9 import 'dart:uri'; |
| 10 | 10 |
| 11 import '../../sdk/lib/_internal/compiler/compiler.dart'; | 11 import '../../sdk/lib/_internal/compiler/compiler.dart'; |
| 12 | 12 |
| 13 Future<String> provider(Uri uri, String mainSource) { | 13 Future<String> provider(Uri uri) { |
| 14 Completer<String> completer = new Completer<String>(); | 14 Completer<String> completer = new Completer<String>(); |
| 15 String source; | 15 String source; |
| 16 if (uri.scheme == "main") { | 16 if (uri.scheme == "main") { |
| 17 source = mainSource; | 17 source = "main() {}"; |
| 18 } else if (uri.scheme == "lib") { | 18 } else if (uri.scheme == "lib") { |
| 19 if (uri.path.endsWith("/core.dart")) { | 19 if (uri.path.endsWith("/core.dart")) { |
| 20 source = """library core; | 20 source = """library core; |
| 21 class Object {} | 21 class Object {} |
| 22 class Type {} | 22 class Type {} |
| 23 class bool {} | 23 class bool {} |
| 24 class num {} | 24 class num {} |
| 25 class int {} | 25 class int {} |
| 26 class double{} | 26 class double{} |
| 27 class String{} | 27 class String{} |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 72 | 72 |
| 73 void handler(Uri uri, int begin, int end, String message, Diagnostic kind) { | 73 void handler(Uri uri, int begin, int end, String message, Diagnostic kind) { |
| 74 if (uri == null) { | 74 if (uri == null) { |
| 75 print('$kind: $message'); | 75 print('$kind: $message'); |
| 76 } else { | 76 } else { |
| 77 print('$uri:$begin:$end: $kind: $message'); | 77 print('$uri:$begin:$end: $kind: $message'); |
| 78 } | 78 } |
| 79 } | 79 } |
| 80 | 80 |
| 81 main() { | 81 main() { |
| 82 Future<String> localProvider(Uri uri) { | |
| 83 return provider(uri, "main() {}"); | |
| 84 } | |
| 85 | |
| 86 Future<String> result = | 82 Future<String> result = |
| 87 compile(new Uri.fromComponents(scheme: 'main'), | 83 compile(new Uri.fromComponents(scheme: 'main'), |
| 88 new Uri.fromComponents(scheme: 'lib', path: '/'), | 84 new Uri.fromComponents(scheme: 'lib', path: '/'), |
| 89 new Uri.fromComponents(scheme: 'package', path: '/'), | 85 new Uri.fromComponents(scheme: 'package', path: '/'), |
| 90 localProvider, handler); | 86 provider, handler); |
| 91 result.then((String code) { | 87 result.then((String code) { |
| 92 if (code == null) { | 88 if (code == null) { |
| 93 throw 'Compilation failed'; | 89 throw 'Compilation failed'; |
| 94 } | 90 } |
| 95 }, onError: (AsyncError e) { | 91 }, onError: (AsyncError e) { |
| 96 throw 'Compilation failed'; | 92 throw 'Compilation failed'; |
| 97 }); | 93 }); |
| 98 } | 94 } |
| OLD | NEW |