| Index: frog/leg/tree/nodes.dart
|
| diff --git a/frog/leg/tree/nodes.dart b/frog/leg/tree/nodes.dart
|
| index f0c8c111c4308b5667c2d6e9bc4295be62dfbccc..e84c4ef65beb30939ef3bd413d59e2350d491d46 100644
|
| --- a/frog/leg/tree/nodes.dart
|
| +++ b/frog/leg/tree/nodes.dart
|
| @@ -656,6 +656,8 @@ class Identifier extends Expression {
|
|
|
| bool isThis() => source.stringValue == 'this';
|
|
|
| + bool isSuper() => source.stringValue == 'super';
|
| +
|
| Identifier asIdentifier() => this;
|
|
|
| accept(Visitor visitor) => visitor.visitIdentifier(this);
|
|
|