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

Unified Diff: pkg/compiler/lib/src/ssa/codegen.dart

Issue 2809203003: Remove Compiler/JavaScriptBackend from metadata_collector (Closed)
Patch Set: Created 3 years, 8 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/ssa/codegen.dart
diff --git a/pkg/compiler/lib/src/ssa/codegen.dart b/pkg/compiler/lib/src/ssa/codegen.dart
index c92ac88f4d6cf84a75f8371823a809eb5b5b61df..d3033450afa23912cd970af87bade04e6efdc6ff 100644
--- a/pkg/compiler/lib/src/ssa/codegen.dart
+++ b/pkg/compiler/lib/src/ssa/codegen.dart
@@ -2996,7 +2996,9 @@ class SsaCodeGenerator implements HVisitor, HBlockInformationVisitor {
case TypeInfoExpressionKind.COMPLETE:
int index = 0;
js.Expression result = _rtiEncoder.getTypeRepresentation(
- node.dartType, (TypeVariableType variable) => arguments[index++]);
+ _emitter.emitter,
+ node.dartType,
+ (TypeVariableType variable) => arguments[index++]);
assert(index == node.inputs.length);
push(result);
return;

Powered by Google App Engine
This is Rietveld 408576698