Include the binary expression's operator in the AST.

This commit is contained in:
Cyrus Najmabadi
2015-02-20 18:56:42 -08:00
parent 5c1ef11d69
commit fc229368d1
17 changed files with 78 additions and 78 deletions

View File

@@ -623,7 +623,7 @@ module ts {
export interface BinaryExpression extends Expression {
left: Expression;
operator: SyntaxKind;
operatorToken: Node;
right: Expression;
}