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

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

Issue 2776383002: Use InterceptorDataBuilderImpl and BackendUsageBuilderImpl for kernel/closed_world_test (Closed)
Patch Set: Created 3 years, 9 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
« no previous file with comments | « no previous file | pkg/compiler/lib/src/js_backend/backend_usage.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/compiler/lib/src/js_backend/backend.dart
diff --git a/pkg/compiler/lib/src/js_backend/backend.dart b/pkg/compiler/lib/src/js_backend/backend.dart
index 9fd3abc66b74e375f7f4aa226efc46b20fea24f8..6180c4ecade6553ba4d41e9409d6f2644735aa09 100644
--- a/pkg/compiler/lib/src/js_backend/backend.dart
+++ b/pkg/compiler/lib/src/js_backend/backend.dart
@@ -506,8 +506,7 @@ class JavaScriptBackend {
impacts = new BackendImpacts(compiler.options, commonElements, helpers);
_mirrorsData = new MirrorsDataImpl(
compiler, compiler.options, commonElements, helpers, constants);
- _backendUsageBuilder = new BackendUsageBuilderImpl(
- compiler.elementEnvironment, commonElements, helpers);
+ _backendUsageBuilder = new BackendUsageBuilderImpl(commonElements, helpers);
_checkedModeHelpers = new CheckedModeHelpers(commonElements, helpers);
emitter =
new CodeEmitterTask(compiler, generateSourceMap, useStartupEmitter);
@@ -914,11 +913,7 @@ class JavaScriptBackend {
customElementsResolutionAnalysis,
rtiNeedBuilder);
_interceptorDataBuilder = new InterceptorDataBuilderImpl(
- nativeBasicData,
- helpers,
- compiler.elementEnvironment,
- commonElements,
- compiler.resolution);
+ nativeBasicData, helpers, compiler.elementEnvironment, commonElements);
return new ResolutionEnqueuer(
task,
compiler.options,
« no previous file with comments | « no previous file | pkg/compiler/lib/src/js_backend/backend_usage.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698