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

Unified Diff: sdk/lib/_internal/compiler/implementation/js_emitter/js_emitter.dart

Issue 1259553002: Emit program and dependency information as relations in a Prolog database. Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 5 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/compiler/implementation/js_emitter/js_emitter.dart
diff --git a/sdk/lib/_internal/compiler/implementation/js_emitter/js_emitter.dart b/sdk/lib/_internal/compiler/implementation/js_emitter/js_emitter.dart
index 2df2853feef39f94c0e20a2d416c6475aa616578..2a0a0d503ba1511122e43fb3b2ba3a392899835a 100644
--- a/sdk/lib/_internal/compiler/implementation/js_emitter/js_emitter.dart
+++ b/sdk/lib/_internal/compiler/implementation/js_emitter/js_emitter.dart
@@ -13,8 +13,7 @@ import '../closure.dart' show
ClosureClassMap,
ClosureFieldElement;
-import '../dart2jslib.dart' show
- CodeBuffer;
+import '../dart2jslib.dart' show CodeBuffer, Relations;
import '../elements/elements.dart' show
TypeVariableElement,
@@ -37,6 +36,8 @@ import '../js_backend/js_backend.dart' show
TypeChecks,
TypeVariableHandler;
+import '../prolog/prolog.dart' as prolog;
+
import '../source_file.dart' show
SourceFile,
StringSourceFile;
@@ -58,6 +59,7 @@ import '../util/uri_extras.dart' show
import '../deferred_load.dart' show
OutputUnit;
+import 'dart:async';
part 'class_builder.dart';
part 'class_emitter.dart';

Powered by Google App Engine
This is Rietveld 408576698