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

Unified Diff: pkg/compiler/lib/src/js_emitter/full_emitter/nsm_emitter.dart

Issue 1397043002: Introduce BackendImpact to separate enqueueing from data. (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Updated cf. comments. 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_emitter/full_emitter/nsm_emitter.dart
diff --git a/pkg/compiler/lib/src/js_emitter/full_emitter/nsm_emitter.dart b/pkg/compiler/lib/src/js_emitter/full_emitter/nsm_emitter.dart
index cf823c1d15b2cd08a6653395696b3fbb94658e7b..f14b9a3786849c8ec8be83ca85ce94e4f8363fd2 100644
--- a/pkg/compiler/lib/src/js_emitter/full_emitter/nsm_emitter.dart
+++ b/pkg/compiler/lib/src/js_emitter/full_emitter/nsm_emitter.dart
@@ -162,7 +162,7 @@ class NsmEmitter extends CodeEmitterHelper {
// Object class to catch noSuchMethod invocations.
ClassElement objectClass = compiler.objectClass;
jsAst.Expression createInvocationMirror = backend.emitter
- .staticFunctionAccess(backend.getCreateInvocationMirror());
+ .staticFunctionAccess(backend.helpers.createInvocationMirror);
if (useDiffEncoding) {
statements.add(js.statement('''{
var objectClassObject = processedClasses.collected[#objectClass],

Powered by Google App Engine
This is Rietveld 408576698