|
1 | 1 | //// [tests/cases/conformance/decorators/class/decoratedClassExportsCommonJS1.ts] //// |
2 | 2 |
|
3 | | -=== decoratedClassExportsCommonJS1.ts === |
| 3 | +=== a.ts === |
| 4 | +declare function forwardRef(x: any): any; |
| 5 | +>forwardRef : Symbol(forwardRef, Decl(a.ts, 0, 0)) |
| 6 | +>x : Symbol(x, Decl(a.ts, 0, 28)) |
| 7 | + |
4 | 8 | declare var Something: any; |
5 | | ->Something : Symbol(Something, Decl(decoratedClassExportsCommonJS1.ts, 0, 11)) |
| 9 | +>Something : Symbol(Something, Decl(a.ts, 1, 11)) |
6 | 10 |
|
7 | 11 | @Something({ v: () => Testing123 }) |
8 | | ->Something : Symbol(Something, Decl(decoratedClassExportsCommonJS1.ts, 0, 11)) |
9 | | ->v : Symbol(v, Decl(decoratedClassExportsCommonJS1.ts, 1, 12)) |
10 | | ->Testing123 : Symbol(Testing123, Decl(decoratedClassExportsCommonJS1.ts, 0, 27)) |
| 12 | +>Something : Symbol(Something, Decl(a.ts, 1, 11)) |
| 13 | +>v : Symbol(v, Decl(a.ts, 2, 12)) |
| 14 | +>Testing123 : Symbol(Testing123, Decl(a.ts, 1, 27)) |
11 | 15 |
|
12 | 16 | export class Testing123 { |
13 | | ->Testing123 : Symbol(Testing123, Decl(decoratedClassExportsCommonJS1.ts, 0, 27)) |
| 17 | +>Testing123 : Symbol(Testing123, Decl(a.ts, 1, 27)) |
14 | 18 |
|
15 | 19 | static prop0: string; |
16 | | ->prop0 : Symbol(Testing123.prop0, Decl(decoratedClassExportsCommonJS1.ts, 2, 25)) |
| 20 | +>prop0 : Symbol(Testing123.prop0, Decl(a.ts, 3, 25)) |
17 | 21 |
|
18 | 22 | static prop1 = Testing123.prop0; |
19 | | ->prop1 : Symbol(Testing123.prop1, Decl(decoratedClassExportsCommonJS1.ts, 3, 25)) |
20 | | ->Testing123.prop0 : Symbol(Testing123.prop0, Decl(decoratedClassExportsCommonJS1.ts, 2, 25)) |
21 | | ->Testing123 : Symbol(Testing123, Decl(decoratedClassExportsCommonJS1.ts, 0, 27)) |
22 | | ->prop0 : Symbol(Testing123.prop0, Decl(decoratedClassExportsCommonJS1.ts, 2, 25)) |
| 23 | +>prop1 : Symbol(Testing123.prop1, Decl(a.ts, 4, 25)) |
| 24 | +>Testing123.prop0 : Symbol(Testing123.prop0, Decl(a.ts, 3, 25)) |
| 25 | +>Testing123 : Symbol(Testing123, Decl(a.ts, 1, 27)) |
| 26 | +>prop0 : Symbol(Testing123.prop0, Decl(a.ts, 3, 25)) |
23 | 27 | } |
0 commit comments