TypeScript/tests/baselines/reference/prefixIncrementAsOperandOfPlusExpression.symbols

14 lines
414 B
Plaintext
Raw Normal View History

=== 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))