|
| 1 | +=== tests/cases/compiler/modifierParenCast.ts === |
| 2 | +let readonly: any = undefined; |
| 3 | +>readonly : Symbol(readonly, Decl(modifierParenCast.ts, 0, 3)) |
| 4 | +>undefined : Symbol(undefined) |
| 5 | + |
| 6 | +let override: any = undefined; |
| 7 | +>override : Symbol(override, Decl(modifierParenCast.ts, 1, 3)) |
| 8 | +>undefined : Symbol(undefined) |
| 9 | + |
| 10 | +let out: any = undefined; |
| 11 | +>out : Symbol(out, Decl(modifierParenCast.ts, 2, 3)) |
| 12 | +>undefined : Symbol(undefined) |
| 13 | + |
| 14 | +let declare: any = undefined; |
| 15 | +>declare : Symbol(declare, Decl(modifierParenCast.ts, 3, 3)) |
| 16 | +>undefined : Symbol(undefined) |
| 17 | + |
| 18 | +export const a = (readonly as number); |
| 19 | +>a : Symbol(a, Decl(modifierParenCast.ts, 5, 12)) |
| 20 | +>readonly : Symbol(readonly, Decl(modifierParenCast.ts, 0, 3)) |
| 21 | + |
| 22 | +export const b = (override as number); |
| 23 | +>b : Symbol(b, Decl(modifierParenCast.ts, 6, 12)) |
| 24 | +>override : Symbol(override, Decl(modifierParenCast.ts, 1, 3)) |
| 25 | + |
| 26 | +export const c = (out as number); |
| 27 | +>c : Symbol(c, Decl(modifierParenCast.ts, 7, 12)) |
| 28 | +>out : Symbol(out, Decl(modifierParenCast.ts, 2, 3)) |
| 29 | + |
| 30 | +export const d = (declare as number); |
| 31 | +>d : Symbol(d, Decl(modifierParenCast.ts, 8, 12)) |
| 32 | +>declare : Symbol(declare, Decl(modifierParenCast.ts, 3, 3)) |
| 33 | + |
0 commit comments