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

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

Issue 2685573002: Replace Backend with 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 d4fd83d638c4ac86a74fb0ae951c41d8817bcbf6..b49c5d22d79aa221b39b5e64beb4802a112dff6a 100644
--- a/pkg/compiler/lib/src/js_backend/backend_helpers.dart
+++ b/pkg/compiler/lib/src/js_backend/backend_helpers.dart
@@ -104,23 +104,29 @@ class BackendHelpers {
}
LibraryEntity _jsHelperLibrary;
- LibraryEntity get jsHelperLibrary => _jsHelperLibrary ??= _env.lookupLibrary(DART_JS_HELPER);
+ LibraryEntity get jsHelperLibrary =>
+ _jsHelperLibrary ??= _env.lookupLibrary(DART_JS_HELPER);
LibraryEntity _asyncLibrary;
- LibraryEntity get asyncLibrary => _asyncLibrary ??= _env.lookupLibrary(Uris.dart_async);
+ LibraryEntity get asyncLibrary =>
+ _asyncLibrary ??= _env.lookupLibrary(Uris.dart_async);
LibraryEntity _interceptorsLibrary;
- LibraryEntity get interceptorsLibrary => _interceptorsLibrary ??= _env.lookupLibrary(DART_INTERCEPTORS);
+ LibraryEntity get interceptorsLibrary =>
+ _interceptorsLibrary ??= _env.lookupLibrary(DART_INTERCEPTORS);
LibraryEntity _foreignLibrary;
- LibraryEntity get foreignLibrary => _foreignLibrary ??= _env.lookupLibrary(DART_FOREIGN_HELPER);
+ LibraryEntity get foreignLibrary =>
+ _foreignLibrary ??= _env.lookupLibrary(DART_FOREIGN_HELPER);
LibraryEntity _isolateHelperLibrary;
- LibraryEntity get isolateHelperLibrary => _isolateHelperLibrary ??= _env.lookupLibrary(DART_ISOLATE_HELPER);
+ LibraryEntity get isolateHelperLibrary =>
+ _isolateHelperLibrary ??= _env.lookupLibrary(DART_ISOLATE_HELPER);
/// Reference to the internal library to lookup functions to always inline.
LibraryEntity _internalLibrary;
- LibraryEntity get internalLibrary => _internalLibrary ??= _env.lookupLibrary(Uris.dart__internal);
+ LibraryEntity get internalLibrary =>
+ _internalLibrary ??= _env.lookupLibrary(Uris.dart__internal);
FunctionEntity _assertTest;
FunctionEntity get assertTest =>

Powered by Google App Engine
This is Rietveld 408576698