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 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92
|
=== tests/cases/conformance/salsa/a.js ===
// This test is asserting that a single property/element access
// on `this` is a special assignment declaration, but chaining
// off that does not create additional declarations. I’m not sure
// if it needs to be that way in JavaScript; the test simply
// ensures no accidental changes were introduced while allowing
// element access assignments to create declarations.
this.x = {};
>this.x = {} : {}
>this.x : {} | undefined
>this : typeof globalThis
>x : {} | undefined
>{} : {}
this.x.y = {};
>this.x.y = {} : {}
>this.x.y : any
>this.x : {}
>this : typeof globalThis
>x : {}
>y : any
>{} : {}
this["y"] = {};
>this["y"] = {} : {}
>this["y"] : {} | undefined
>this : typeof globalThis
>"y" : "y"
>{} : {}
this["y"]["z"] = {};
>this["y"]["z"] = {} : {}
>this["y"]["z"] : any
>this["y"] : {}
>this : typeof globalThis
>"y" : "y"
>"z" : "z"
>{} : {}
/** @constructor */
function F() {
>F : typeof F
this.a = {};
>this.a = {} : {}
>this.a : any
>this : this
>a : any
>{} : {}
this.a.b = {};
>this.a.b = {} : {}
>this.a.b : any
>this.a : {}
>this : this
>a : {}
>b : any
>{} : {}
this["b"] = {};
>this["b"] = {} : {}
>this["b"] : any
>this : this
>"b" : "b"
>{} : {}
this["b"]["c"] = {};
>this["b"]["c"] = {} : {}
>this["b"]["c"] : any
>this["b"] : {}
>this : this
>"b" : "b"
>"c" : "c"
>{} : {}
}
const f = new F();
>f : F
>new F() : F
>F : typeof F
f.a;
>f.a : {}
>f : F
>a : {}
f.b;
>f.b : {}
>f : F
>b : {}
|