Skip to content

Commit

Permalink
fixes #8: simplify structure of ForInStatement and ForOfStatement
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelficarra committed Feb 18, 2015
1 parent 0f61285 commit 2766679
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions spec.idl
Expand Up @@ -389,12 +389,14 @@ interface ExpressionStatement : Statement {
};

interface ForInStatement : IterationStatement {
attribute (VariableDeclaration or Binding) left;
attribute VariableDeclarationKind? kind;
attribute Binding left;
attribute Expression right;
};

interface ForOfStatement : IterationStatement {
attribute (VariableDeclaration or Binding) left;
attribute VariableDeclarationKind? kind;
attribute Binding left;
attribute Expression right;
};

Expand Down

0 comments on commit 2766679

Please sign in to comment.