TypeScript/tests/cases/conformance/expressions/asOperator/asOpEmitParens.ts
2016-07-15 15:56:22 -07:00

9 lines
158 B
TypeScript

declare var x;
// Must emit as (x + 1) * 3
(x + 1 as number) * 3;
// Should still emit as x.y
(x as any).y;
// Emit as new (x())
new (x() as any);