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

Unified Diff: pkg/compiler/lib/src/js_backend/runtime_types.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_backend/runtime_types.dart
diff --git a/pkg/compiler/lib/src/js_backend/runtime_types.dart b/pkg/compiler/lib/src/js_backend/runtime_types.dart
index 81b4dd50dd1170b733113c011b1114060fd2d2fb..81c3323980799f43435a6563446397ccfc70b6cd 100644
--- a/pkg/compiler/lib/src/js_backend/runtime_types.dart
+++ b/pkg/compiler/lib/src/js_backend/runtime_types.dart
@@ -543,7 +543,8 @@ class RuntimeTypes {
JavaScriptBackend backend = compiler.backend;
jsAst.Name contextName = backend.namer.className(contextClass);
return js('function () { return #(#, #, #); }',
- [ backend.emitter.staticFunctionAccess(backend.getComputeSignature()),
+ [ backend.emitter.staticFunctionAccess(
+ backend.helpers.computeSignature),
encoding, this_, js.quoteName(contextName) ]);
} else {
return encoding;
« no previous file with comments | « pkg/compiler/lib/src/js_backend/js_backend.dart ('k') | pkg/compiler/lib/src/js_backend/type_variable_handler.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698