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

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

Issue 1413213004: Move remaining helpers to BackendHelpers (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Created 5 years, 2 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/backend_impact.dart
diff --git a/pkg/compiler/lib/src/js_backend/backend_impact.dart b/pkg/compiler/lib/src/js_backend/backend_impact.dart
index 7ced4461dd3cfbb70d7a5a0d6e25f46836aad62b..659c4e621190b5000a36e941e5bf9c15f4db4a26 100644
--- a/pkg/compiler/lib/src/js_backend/backend_impact.dart
+++ b/pkg/compiler/lib/src/js_backend/backend_impact.dart
@@ -139,7 +139,7 @@ class BackendImpacts {
BackendImpact get constantMapLiteral {
ClassElement find(String name) {
- return helpers.find(backend.jsHelperLibrary, name);
+ return helpers.find(helpers.jsHelperLibrary, name);
}
return new BackendImpact(
@@ -206,8 +206,8 @@ class BackendImpacts {
staticUses: [
helpers.exceptionUnwrapper],
instantiatedClasses: [
- backend.jsPlainJavaScriptObjectClass,
- backend.jsUnknownJavaScriptObjectClass]);
+ helpers.jsPlainJavaScriptObjectClass,
+ helpers.jsUnknownJavaScriptObjectClass]);
BackendImpact get throwExpression => new BackendImpact(
// We don't know ahead of time whether we will need the throw in a
« no previous file with comments | « pkg/compiler/lib/src/js_backend/backend_helpers.dart ('k') | pkg/compiler/lib/src/js_backend/checked_mode_helpers.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698