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

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: Handle the new Name class in the JS Printer. 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 d44688ab3d667401c5c540cc59623c582114b913..0d780cb1ebaf6edc8b20761d720d0a51a6f5db3b 100644
--- a/pkg/compiler/lib/src/js_backend/js_backend.dart
+++ b/pkg/compiler/lib/src/js_backend/js_backend.dart
@@ -21,9 +21,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,
+ useNewSourceInfo;
+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