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

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

Issue 2680823002: Extract InterceptorData from JavaScriptBackend. (Closed)
Patch Set: Created 3 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/backend_helpers.dart
diff --git a/pkg/compiler/lib/src/js_backend/backend_helpers.dart b/pkg/compiler/lib/src/js_backend/backend_helpers.dart
index b49c5d22d79aa221b39b5e64beb4802a112dff6a..c6f9678a5c3d4e2131a101003b49afe9d571a395 100644
--- a/pkg/compiler/lib/src/js_backend/backend_helpers.dart
+++ b/pkg/compiler/lib/src/js_backend/backend_helpers.dart
@@ -43,11 +43,11 @@ class BackendHelpers {
final ElementEnvironment _env;
// TODO(johnniwinther): Remove this.
- final JavaScriptBackend backend;
+ final JavaScriptBackend _backend;
final CommonElements commonElements;
- BackendHelpers(this._env, this.backend, this.commonElements);
+ BackendHelpers(this._env, this._backend, this.commonElements);
ClassEntity _findInterceptorsClass(String name) =>
_findClass(interceptorsLibrary, name);

Powered by Google App Engine
This is Rietveld 408576698