@@ -5,19 +5,19 @@ var Outer = {};
55
66=== tests/cases/conformance/salsa/work.js ===
77Outer.Inner = function () {}
8- >Outer.Inner = function () {} : { (): void; prototype: { [x: string]: any; x: number; m(): void; }; }
9- >Outer.Inner : { (): void; prototype: { [x: string]: any; x: number; m(): void; }; }
8+ >Outer.Inner = function () {} : { (): void; prototype: { [x: string]: any; }; }
9+ >Outer.Inner : { (): void; prototype: { [x: string]: any; }; }
1010>Outer : typeof Outer
11- >Inner : { (): void; prototype: { [x: string]: any; x: number; m(): void; }; }
12- >function () {} : { (): void; prototype: { [x: string]: any; x: number; m(): void; }; }
11+ >Inner : { (): void; prototype: { [x: string]: any; }; }
12+ >function () {} : { (): void; prototype: { [x: string]: any; }; }
1313
1414Outer.Inner.prototype = {
1515>Outer.Inner.prototype = { x: 1, m() { }} : { [x: string]: any; x: number; m(): void; }
16- >Outer.Inner.prototype : { [x: string]: any; x: number; m(): void; }
17- >Outer.Inner : { (): void; prototype: { [x: string]: any; x: number; m(): void; }; }
16+ >Outer.Inner.prototype : { [x: string]: any; }
17+ >Outer.Inner : { (): void; prototype: { [x: string]: any; }; }
1818>Outer : typeof Outer
19- >Inner : { (): void; prototype: { [x: string]: any; x: number; m(): void; }; }
20- >prototype : { [x: string]: any; x: number; m(): void; }
19+ >Inner : { (): void; prototype: { [x: string]: any; }; }
20+ >prototype : { [x: string]: any; }
2121>{ x: 1, m() { }} : { [x: string]: any; x: number; m(): void; }
2222
2323 x: 1,
@@ -47,9 +47,9 @@ inner.m()
4747var inno = new Outer.Inner()
4848>inno : { [x: string]: any; x: number; m(): void; }
4949>new Outer.Inner() : { [x: string]: any; x: number; m(): void; }
50- >Outer.Inner : { (): void; prototype: { [x: string]: any; x: number; m(): void; }; }
50+ >Outer.Inner : { (): void; prototype: { [x: string]: any; }; }
5151>Outer : typeof Outer
52- >Inner : { (): void; prototype: { [x: string]: any; x: number; m(): void; }; }
52+ >Inner : { (): void; prototype: { [x: string]: any; }; }
5353
5454inno.x
5555>inno.x : number
0 commit comments