TypeScript/tests/baselines/reference/prefixIncrementAsOperandOfPlusExpression.symbols
2015-04-15 16:44:20 -07:00

14 lines
414 B
Plaintext

=== tests/cases/compiler/prefixIncrementAsOperandOfPlusExpression.ts ===
var x = 1;
>x : Symbol(x, Decl(prefixIncrementAsOperandOfPlusExpression.ts, 0, 3))
var y = 1;
>y : Symbol(y, Decl(prefixIncrementAsOperandOfPlusExpression.ts, 1, 3))
+ ++x;
>x : Symbol(x, Decl(prefixIncrementAsOperandOfPlusExpression.ts, 0, 3))
+ ++y;
>y : Symbol(y, Decl(prefixIncrementAsOperandOfPlusExpression.ts, 1, 3))