1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
|
=== tests/cases/conformance/constEnums/constEnumPropertyAccess2.ts ===
// constant enum declarations are completely erased in the emitted JavaScript code.
// it is an error to reference a constant enum object in any other context
// than a property access that selects one of the enum's members
const enum G {
>G : G
A = 1,
>A : G.A
>1 : 1
B = 2,
>B : G.B
>2 : 2
C = A + B,
>C : G.C
>A + B : number
>A : G.A
>B : G.B
D = A * 2
>D : G.B
>A * 2 : number
>A : G.A
>2 : 2
}
// Error from referring constant enum in any other context than a property access
var z = G;
>z : typeof G
>G : typeof G
var z1 = G[G.A];
>z1 : any
>G[G.A] : any
>G : typeof G
>G.A : G.A
>G : typeof G
>A : G.A
var g: G;
>g : G
g = "string";
>g = "string" : "string"
>g : G
>"string" : "string"
function foo(x: G) { }
>foo : (x: G) => void
>x : G
G.B = 3;
>G.B = 3 : 3
>G.B : any
>G : typeof G
>B : any
>3 : 3
|