OLD | NEW |
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, 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 // Test that no parts are emitted when deferred loading isn't used. | 5 // Test that no parts are emitted when deferred loading isn't used. |
6 | 6 |
7 import 'package:expect/expect.dart'; | 7 import 'package:expect/expect.dart'; |
8 import "package:async_helper/async_helper.dart"; | 8 import "package:async_helper/async_helper.dart"; |
9 import 'memory_source_file_helper.dart'; | 9 import 'memory_source_file_helper.dart'; |
10 | 10 |
(...skipping 13 matching lines...) Expand all Loading... |
24 var provider = new MemorySourceFileProvider(MEMORY_SOURCE_FILES); | 24 var provider = new MemorySourceFileProvider(MEMORY_SOURCE_FILES); |
25 void diagnosticHandler(Uri uri, int begin, int end, | 25 void diagnosticHandler(Uri uri, int begin, int end, |
26 String message, Diagnostic kind) { | 26 String message, Diagnostic kind) { |
27 if (kind == Diagnostic.VERBOSE_INFO) { | 27 if (kind == Diagnostic.VERBOSE_INFO) { |
28 return; | 28 return; |
29 } | 29 } |
30 throw '$uri:$begin:$end:$message:$kind'; | 30 throw '$uri:$begin:$end:$message:$kind'; |
31 } | 31 } |
32 | 32 |
33 EventSink<String> outputProvider(String name, String extension) { | 33 EventSink<String> outputProvider(String name, String extension) { |
34 if (name != '') throw 'Attempt to output file "$name.$extension"'; | 34 if (name != '' && name != 'precompiled') { |
| 35 throw 'Attempt to output file "$name.$extension"'; |
| 36 } |
35 return new NullSink('$name.$extension'); | 37 return new NullSink('$name.$extension'); |
36 } | 38 } |
37 | 39 |
38 Compiler compiler = new Compiler(provider.readStringFromUri, | 40 Compiler compiler = new Compiler(provider.readStringFromUri, |
39 outputProvider, | 41 outputProvider, |
40 diagnosticHandler, | 42 diagnosticHandler, |
41 libraryRoot, | 43 libraryRoot, |
42 packageRoot, | 44 packageRoot, |
43 []); | 45 []); |
44 asyncTest(() => compiler.run(Uri.parse('memory:main.dart')).then((_) { | 46 asyncTest(() => compiler.run(Uri.parse('memory:main.dart')).then((_) { |
(...skipping 12 matching lines...) Expand all Loading... |
57 | 59 |
58 main() { | 60 main() { |
59 var x = fisk; | 61 var x = fisk; |
60 if (new DateTime.now().millisecondsSinceEpoch == 42) { | 62 if (new DateTime.now().millisecondsSinceEpoch == 42) { |
61 x = new Greeting(\"I\'m confused\"); | 63 x = new Greeting(\"I\'m confused\"); |
62 } | 64 } |
63 print(x.message); | 65 print(x.message); |
64 } | 66 } |
65 """, | 67 """, |
66 }; | 68 }; |
OLD | NEW |