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

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

Issue 2871583002: Pass InterceptorData through ResolutionWorldBuilder and access it through ClosedWorld (Closed)
Patch Set: Created 3 years, 7 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/interceptor_data.dart
diff --git a/pkg/compiler/lib/src/js_backend/interceptor_data.dart b/pkg/compiler/lib/src/js_backend/interceptor_data.dart
index 23b990d552562b0616788ef18a9d3268e94207fa..7a3d2dec39237347067d2a898a3a1566df0052ee 100644
--- a/pkg/compiler/lib/src/js_backend/interceptor_data.dart
+++ b/pkg/compiler/lib/src/js_backend/interceptor_data.dart
@@ -45,7 +45,7 @@ abstract class InterceptorData {
abstract class InterceptorDataBuilder {
void addInterceptors(ClassEntity cls);
void addInterceptorsForNativeClassMembers(ClassEntity cls);
- InterceptorData onResolutionComplete();
+ InterceptorData close();
}
class InterceptorDataImpl implements InterceptorData {
@@ -239,7 +239,7 @@ class InterceptorDataBuilderImpl implements InterceptorDataBuilder {
InterceptorDataBuilderImpl(
this._nativeData, this._elementEnvironment, this._commonElements);
- InterceptorData onResolutionComplete() {
+ InterceptorData close() {
return new InterceptorDataImpl(
_nativeData,
_commonElements,
« no previous file with comments | « pkg/compiler/lib/src/js_backend/enqueuer.dart ('k') | pkg/compiler/lib/src/js_emitter/class_stub_generator.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698