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

Side by Side Diff: dart/tests/compiler/dart2js/unneeded_part_js_test.dart

Issue 23721012: Generate out.precompiled.js, not precompiled.js. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years, 3 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 | Annotate | Revision Log
OLDNEW
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
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 != '' && name != 'precompiled') { 34 if (name != '') throw 'Attempt to output file "$name.$extension"';
35 throw 'Attempt to output file "$name.$extension"';
36 }
37 return new NullSink('$name.$extension'); 35 return new NullSink('$name.$extension');
38 } 36 }
39 37
40 Compiler compiler = new Compiler(provider.readStringFromUri, 38 Compiler compiler = new Compiler(provider.readStringFromUri,
41 outputProvider, 39 outputProvider,
42 diagnosticHandler, 40 diagnosticHandler,
43 libraryRoot, 41 libraryRoot,
44 packageRoot, 42 packageRoot,
45 []); 43 []);
46 asyncTest(() => compiler.run(Uri.parse('memory:main.dart')).then((_) { 44 asyncTest(() => compiler.run(Uri.parse('memory:main.dart')).then((_) {
(...skipping 12 matching lines...) Expand all
59 57
60 main() { 58 main() {
61 var x = fisk; 59 var x = fisk;
62 if (new DateTime.now().millisecondsSinceEpoch == 42) { 60 if (new DateTime.now().millisecondsSinceEpoch == 42) {
63 x = new Greeting(\"I\'m confused\"); 61 x = new Greeting(\"I\'m confused\");
64 } 62 }
65 print(x.message); 63 print(x.message);
66 } 64 }
67 """, 65 """,
68 }; 66 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698