| Index: dart/frog/leg/tree/nodes.dart
|
| diff --git a/dart/frog/leg/tree/nodes.dart b/dart/frog/leg/tree/nodes.dart
|
| index 2a62457aa4299ae6f4f1227a219d75d9d3ea7a16..17f87eab9734a7d93584e1c51a5456b4c6471f31 100644
|
| --- a/dart/frog/leg/tree/nodes.dart
|
| +++ b/dart/frog/leg/tree/nodes.dart
|
| @@ -791,6 +791,12 @@ class ParenthesizedExpression extends Expression {
|
|
|
| /** Representation of modifiers such as static, abstract, final, etc. */
|
| class Modifiers extends Node {
|
| + /* TODO(ahe): The following should be validated relating to modifiers:
|
| + * 1. The nodes must come in a certain order.
|
| + * 2. The keywords "var" and "final" may not be used at the same time.
|
| + * 3. The type of an element must be null if isVar() is true.
|
| + */
|
| +
|
| final NodeList nodes;
|
| /** Bit pattern to easy check what modifiers are present. */
|
| final int flags;
|
|
|