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

Unified Diff: frog/leg/ssa/nodes.dart

Issue 8888010: First instantiations of objects. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Added comment. Created 9 years 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 | « frog/leg/ssa/builder.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: frog/leg/ssa/nodes.dart
diff --git a/frog/leg/ssa/nodes.dart b/frog/leg/ssa/nodes.dart
index 652e770ca97fa90b07c6684f4befa5e51aadad74..5bb8687f95d716f5887b327d67e73e0f1f9a3e62 100644
--- a/frog/leg/ssa/nodes.dart
+++ b/frog/leg/ssa/nodes.dart
@@ -867,7 +867,8 @@ class HForeign extends HInstruction {
class HForeignNew extends HForeign {
ClassElement element;
- HForeignNew(this.element, List<HInstruction> inputs) : super("new", inputs);
+ HForeignNew(this.element, List<HInstruction> inputs)
+ : super(const SourceString("new"), inputs);
accept(HVisitor visitor) => visitor.visitForeignNew(this);
}
« no previous file with comments | « frog/leg/ssa/builder.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698