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

Unified Diff: pkg/compiler/lib/src/cps_ir/cps_ir_nodes.dart

Issue 1564713002: Copier should copy InvokeMethod calling convention (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Created 4 years, 11 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/compiler/lib/src/cps_ir/cps_ir_nodes.dart
diff --git a/pkg/compiler/lib/src/cps_ir/cps_ir_nodes.dart b/pkg/compiler/lib/src/cps_ir/cps_ir_nodes.dart
index e34a4a482a30b809c332d1227216d1c7c7ebad25..f60337c71ad9972f7e151213f72820bb58f83e7f 100644
--- a/pkg/compiler/lib/src/cps_ir/cps_ir_nodes.dart
+++ b/pkg/compiler/lib/src/cps_ir/cps_ir_nodes.dart
@@ -2483,7 +2483,8 @@ class DefinitionCopyingVisitor extends Visitor<Definition> {
Definition visitInvokeMethod(InvokeMethod node) {
return new InvokeMethod(getCopy(node.receiver), node.selector, node.mask,
getList(node.arguments),
- node.sourceInformation);
+ node.sourceInformation)
+ ..callingConvention = node.callingConvention;
asgerf 2016/01/06 15:38:33 While you're at it, could you add this as a named
sra1 2016/01/06 20:42:04 Done.
}
Definition visitInvokeMethodDirectly(InvokeMethodDirectly node) {
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698