| Index: dart/frog/leg/ssa/nodes.dart
|
| diff --git a/dart/frog/leg/ssa/nodes.dart b/dart/frog/leg/ssa/nodes.dart
|
| index 0787b22e2fd0ee5cfcb8cc11902a5cf2c7a4c9f1..9ca686f18e0f6171908ca41d9c8f814dfa700e1c 100644
|
| --- a/dart/frog/leg/ssa/nodes.dart
|
| +++ b/dart/frog/leg/ssa/nodes.dart
|
| @@ -2084,7 +2084,8 @@ class HReturn extends HControlFlow {
|
| }
|
|
|
| class HThrow extends HControlFlow {
|
| - HThrow(value) : super(<HInstruction>[value]);
|
| + final bool isRethrow;
|
| + HThrow(value, [this.isRethrow = false]) : super(<HInstruction>[value]);
|
| toString() => 'throw';
|
| accept(HVisitor visitor) => visitor.visitThrow(this);
|
| }
|
|
|