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

Unified Diff: sdk/lib/_internal/pub/lib/src/dart.dart

Issue 191253003: Include source map URLs in the generated JS. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Revise. Created 6 years, 9 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
Index: sdk/lib/_internal/pub/lib/src/dart.dart
diff --git a/sdk/lib/_internal/pub/lib/src/dart.dart b/sdk/lib/_internal/pub/lib/src/dart.dart
index cc9146f307f5c928b4d96d1e095b6760b543a567..7da4b172def7809d4e25f9a772d3792f2b7db6a6 100644
--- a/sdk/lib/_internal/pub/lib/src/dart.dart
+++ b/sdk/lib/_internal/pub/lib/src/dart.dart
@@ -11,6 +11,7 @@ import 'dart:isolate';
import 'package:analyzer/analyzer.dart';
import 'package:path/path.dart' as path;
import 'package:stack_trace/stack_trace.dart';
+
import '../../../compiler/compiler.dart' as compiler;
import '../../../compiler/implementation/filenames.dart'
show appendSlash;
@@ -74,6 +75,11 @@ Future compile(String entrypoint, CompilerProvider provider, {
if (terse) options.add('--terse');
if (toDart) options.add('--output-type=dart');
+ // Add the source map URLs.
+ var sourceUrl = path.toUri(entrypoint);
+ options.add("--out=$sourceUrl.js");
+ options.add("--source-map=$sourceUrl.js.map");
+
if (environment == null) environment = {};
if (commandLineOptions != null) options.addAll(commandLineOptions);

Powered by Google App Engine
This is Rietveld 408576698