| 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);
|
| }
|
|
|
|
|