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

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

Issue 2668233002: Remove code supporting incremental compilation in dart2js (Closed)
Patch Set: Created 3 years, 11 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/namer.dart
diff --git a/pkg/compiler/lib/src/js_backend/namer.dart b/pkg/compiler/lib/src/js_backend/namer.dart
index ffb780033734ba0cf397ee0142143014fa24eb44..0f0e80d3abdc450cb7b111c10d45617aae784854 100644
--- a/pkg/compiler/lib/src/js_backend/namer.dart
+++ b/pkg/compiler/lib/src/js_backend/namer.dart
@@ -1711,18 +1711,6 @@ class Namer {
return name;
}
}
-
- String get incrementalHelperName => r'$dart_unsafe_incremental_support';
-
- jsAst.Expression get accessIncrementalHelper {
- return js('self.${incrementalHelperName}');
- }
-
- void forgetElement(Element element) {
- jsAst.Name globalName = userGlobals[element];
- invariant(element, globalName != null, message: 'No global name.');
- userGlobals.remove(element);
- }
}
/**
« no previous file with comments | « pkg/compiler/lib/src/js_backend/enqueuer.dart ('k') | pkg/compiler/lib/src/js_emitter/code_emitter_task.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698