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

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

Issue 1762723002: Cleanup 1: split parts into their own libraries, remove unused imports (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 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
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 297f79fa1c827afa9ad2cd60de835bb01e1bf294..9a482f0531a2c29c60c2c6ab6841ad504cfe984b 100644
--- a/pkg/compiler/lib/src/js_backend/js_backend.dart
+++ b/pkg/compiler/lib/src/js_backend/js_backend.dart
@@ -82,7 +82,13 @@ import '../library_loader.dart' show LibraryLoader, LoadedLibraries;
import '../native/native.dart' as native;
import '../resolution/tree_elements.dart' show
TreeElements;
-import '../ssa/ssa.dart';
+import '../ssa/builder.dart' show
+ SsaFunctionCompiler;
+import '../ssa/nodes.dart' show
+ HTypeConversion,
+ HInstruction;
+import '../ssa/codegen.dart' show
+ SsaCodeGenerator;
import '../tree/tree.dart';
import '../types/types.dart';
import '../universe/call_structure.dart' show

Powered by Google App Engine
This is Rietveld 408576698