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

Unified Diff: pkg/compiler/lib/src/js_backend/js_backend.dart

Issue 1196433002: Create and test source mapping for invocations. (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Update comments. Created 5 years, 6 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: pkg/compiler/lib/src/js_backend/js_backend.dart
diff --git a/pkg/compiler/lib/src/js_backend/js_backend.dart b/pkg/compiler/lib/src/js_backend/js_backend.dart
index 7ca701a2b8416e6896afd6ad83e0d23e12244c0b..4e1df707007e7c2e6d553ed80064906697c6d835 100644
--- a/pkg/compiler/lib/src/js_backend/js_backend.dart
+++ b/pkg/compiler/lib/src/js_backend/js_backend.dart
@@ -20,9 +20,17 @@ import '../dart2jslib.dart';
import '../dart_types.dart';
import '../elements/elements.dart';
import '../io/code_output.dart';
-import '../io/source_information.dart' show SourceInformationFactory;
+import '../io/source_information.dart' show
+ SourceInformationStrategy,
+ USE_NEW_SOURCE_INFO;
+import '../io/position_information.dart' show
+ PositionSourceInformationStrategy;
+import '../io/start_end_information.dart' show
+ StartEndSourceInformationStrategy;
import '../js/js.dart' as jsAst;
import '../js/js.dart' show js;
+import '../js/js_source_mapping.dart' show
+ JavaScriptSourceInformationStrategy;
import '../js_emitter/js_emitter.dart'
show Emitter,
CodeEmitterTask,

Powered by Google App Engine
This is Rietveld 408576698