Chromium Code Reviews| Index: frog/tree.dart |
| diff --git a/frog/tree.dart b/frog/tree.dart |
| index dd846941282bb61cd899cf7705abdb868612c651..ac21d6bb3bb4a310c252c97f262c44e5324b294e 100644 |
| --- a/frog/tree.dart |
| +++ b/frog/tree.dart |
| @@ -45,6 +45,8 @@ class TypeReference extends Node { |
| TypeReference(SourceSpan span, [this.type=null]): super(span) {} |
| visit(TreeVisitor visitor) => visitor.visitTypeReference(this); |
| + |
| + bool get isFinal() => false; |
|
jimhug
2011/11/17 15:36:15
You mean you're going to get the type system right
|
| } |
| // TODO(jimhug): Clean-up and factor out of core. |