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

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

Issue 1076793005: Fine-grain field, getter, setter, and function access in IrBuilder. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 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
« no previous file with comments | « pkg/compiler/lib/src/cps_ir/cps_ir_builder_task.dart ('k') | 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 8fc308d1527ee7d6b07ad109470a7e7a448c370b..a53f4e50964e7171166e9a77059edb6c72f1bb07 100644
--- a/pkg/compiler/lib/src/cps_ir/cps_ir_nodes.dart
+++ b/pkg/compiler/lib/src/cps_ir/cps_ir_nodes.dart
@@ -265,20 +265,24 @@ class InvokeMethod extends Expression implements Invoke {
CallingConvention callingConvention;
final Reference<Continuation> continuation;
final List<Reference<Primitive>> arguments;
+ final SourceInformation sourceInformation;
InvokeMethod(Primitive receiver,
Selector selector,
Continuation continuation,
- List<Primitive> arguments)
+ List<Primitive> arguments,
+ {SourceInformation sourceInformation})
: this.internal(new Reference<Primitive>(receiver),
selector,
new Reference<Continuation>(continuation),
- _referenceList(arguments));
+ _referenceList(arguments),
+ sourceInformation);
InvokeMethod.internal(this.receiver,
this.selector,
this.continuation,
this.arguments,
+ this.sourceInformation,
[this.callingConvention = CallingConvention.DART]) {
assert(isValid);
}
« no previous file with comments | « pkg/compiler/lib/src/cps_ir/cps_ir_builder_task.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698