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

Unified Diff: test/codegen_test.dart

Issue 965033002: add source maps support, fixes #50 (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: format 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 side-by-side diff with in-line comments
Download patch
« lib/src/codegen/js_codegen.dart ('K') | « lib/src/options.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/codegen_test.dart
diff --git a/test/codegen_test.dart b/test/codegen_test.dart
index 5421b7d574264647746f4c54e9c75dc34d697f33..2b8c6a90c394047411258eaf27ccd0dbcfe1bab2 100644
--- a/test/codegen_test.dart
+++ b/test/codegen_test.dart
@@ -60,7 +60,8 @@ main(arguments) {
outputDir: actualDir,
useColors: false,
outputDart: dartGen,
- formatOutput: dartGen);
+ formatOutput: dartGen,
+ emitSourceMaps: false);
var realSdk = new TypeResolver.fromDir(getSdkDir(arguments).path, options);
// Validate that old output is gone before running.
@@ -119,7 +120,8 @@ main(arguments) {
forceCompile: true,
outputDart: dartGen,
formatOutput: dartGen,
- cheapTestFormat: true);
+ cheapTestFormat: true,
+ emitSourceMaps: false);
var sdkPath = dartGen
? path.join(testDir, '..', 'tool', 'input_sdk_src')
: path.join(testDir, 'generated_sdk');
« lib/src/codegen/js_codegen.dart ('K') | « lib/src/options.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698