-
Notifications
You must be signed in to change notification settings - Fork 12.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6933 from Microsoft/portfix6901
Port fix6901 from release-1.8 to master
- Loading branch information
Showing
22 changed files
with
548 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
37 changes: 37 additions & 0 deletions
37
tests/baselines/reference/emitSuperCallBeforeEmitParameterPropertyDeclaration1.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
//// [emitSuperCallBeforeEmitParameterPropertyDeclaration1.ts] | ||
class A { | ||
blub = 6; | ||
} | ||
|
||
|
||
class B extends A { | ||
constructor(public x: number) { | ||
"use strict"; | ||
'someStringForEgngInject'; | ||
super() | ||
} | ||
} | ||
|
||
|
||
//// [emitSuperCallBeforeEmitParameterPropertyDeclaration1.js] | ||
var __extends = (this && this.__extends) || function (d, b) { | ||
for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; | ||
function __() { this.constructor = d; } | ||
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); | ||
}; | ||
var A = (function () { | ||
function A() { | ||
this.blub = 6; | ||
} | ||
return A; | ||
}()); | ||
var B = (function (_super) { | ||
__extends(B, _super); | ||
function B(x) { | ||
"use strict"; | ||
'someStringForEgngInject'; | ||
_super.call(this); | ||
this.x = x; | ||
} | ||
return B; | ||
}(A)); |
23 changes: 23 additions & 0 deletions
23
tests/baselines/reference/emitSuperCallBeforeEmitParameterPropertyDeclaration1.symbols
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
=== tests/cases/compiler/emitSuperCallBeforeEmitParameterPropertyDeclaration1.ts === | ||
class A { | ||
>A : Symbol(A, Decl(emitSuperCallBeforeEmitParameterPropertyDeclaration1.ts, 0, 0)) | ||
|
||
blub = 6; | ||
>blub : Symbol(blub, Decl(emitSuperCallBeforeEmitParameterPropertyDeclaration1.ts, 0, 9)) | ||
} | ||
|
||
|
||
class B extends A { | ||
>B : Symbol(B, Decl(emitSuperCallBeforeEmitParameterPropertyDeclaration1.ts, 2, 1)) | ||
>A : Symbol(A, Decl(emitSuperCallBeforeEmitParameterPropertyDeclaration1.ts, 0, 0)) | ||
|
||
constructor(public x: number) { | ||
>x : Symbol(x, Decl(emitSuperCallBeforeEmitParameterPropertyDeclaration1.ts, 6, 16)) | ||
|
||
"use strict"; | ||
'someStringForEgngInject'; | ||
super() | ||
>super : Symbol(A, Decl(emitSuperCallBeforeEmitParameterPropertyDeclaration1.ts, 0, 0)) | ||
} | ||
} | ||
|
29 changes: 29 additions & 0 deletions
29
tests/baselines/reference/emitSuperCallBeforeEmitParameterPropertyDeclaration1.types
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
=== tests/cases/compiler/emitSuperCallBeforeEmitParameterPropertyDeclaration1.ts === | ||
class A { | ||
>A : A | ||
|
||
blub = 6; | ||
>blub : number | ||
>6 : number | ||
} | ||
|
||
|
||
class B extends A { | ||
>B : B | ||
>A : A | ||
|
||
constructor(public x: number) { | ||
>x : number | ||
|
||
"use strict"; | ||
>"use strict" : string | ||
|
||
'someStringForEgngInject'; | ||
>'someStringForEgngInject' : string | ||
|
||
super() | ||
>super() : void | ||
>super : typeof A | ||
} | ||
} | ||
|
29 changes: 29 additions & 0 deletions
29
tests/baselines/reference/emitSuperCallBeforeEmitParameterPropertyDeclaration1ES6.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
//// [emitSuperCallBeforeEmitParameterPropertyDeclaration1ES6.ts] | ||
class A { | ||
blub = 6; | ||
} | ||
|
||
|
||
class B extends A { | ||
constructor(public x: number) { | ||
"use strict"; | ||
'someStringForEgngInject'; | ||
super() | ||
} | ||
} | ||
|
||
|
||
//// [emitSuperCallBeforeEmitParameterPropertyDeclaration1ES6.js] | ||
class A { | ||
constructor() { | ||
this.blub = 6; | ||
} | ||
} | ||
class B extends A { | ||
constructor(x) { | ||
"use strict"; | ||
'someStringForEgngInject'; | ||
super(); | ||
this.x = x; | ||
} | ||
} |
23 changes: 23 additions & 0 deletions
23
tests/baselines/reference/emitSuperCallBeforeEmitParameterPropertyDeclaration1ES6.symbols
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
=== tests/cases/compiler/emitSuperCallBeforeEmitParameterPropertyDeclaration1ES6.ts === | ||
class A { | ||
>A : Symbol(A, Decl(emitSuperCallBeforeEmitParameterPropertyDeclaration1ES6.ts, 0, 0)) | ||
|
||
blub = 6; | ||
>blub : Symbol(blub, Decl(emitSuperCallBeforeEmitParameterPropertyDeclaration1ES6.ts, 0, 9)) | ||
} | ||
|
||
|
||
class B extends A { | ||
>B : Symbol(B, Decl(emitSuperCallBeforeEmitParameterPropertyDeclaration1ES6.ts, 2, 1)) | ||
>A : Symbol(A, Decl(emitSuperCallBeforeEmitParameterPropertyDeclaration1ES6.ts, 0, 0)) | ||
|
||
constructor(public x: number) { | ||
>x : Symbol(x, Decl(emitSuperCallBeforeEmitParameterPropertyDeclaration1ES6.ts, 6, 16)) | ||
|
||
"use strict"; | ||
'someStringForEgngInject'; | ||
super() | ||
>super : Symbol(A, Decl(emitSuperCallBeforeEmitParameterPropertyDeclaration1ES6.ts, 0, 0)) | ||
} | ||
} | ||
|
29 changes: 29 additions & 0 deletions
29
tests/baselines/reference/emitSuperCallBeforeEmitParameterPropertyDeclaration1ES6.types
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
=== tests/cases/compiler/emitSuperCallBeforeEmitParameterPropertyDeclaration1ES6.ts === | ||
class A { | ||
>A : A | ||
|
||
blub = 6; | ||
>blub : number | ||
>6 : number | ||
} | ||
|
||
|
||
class B extends A { | ||
>B : B | ||
>A : A | ||
|
||
constructor(public x: number) { | ||
>x : number | ||
|
||
"use strict"; | ||
>"use strict" : string | ||
|
||
'someStringForEgngInject'; | ||
>'someStringForEgngInject' : string | ||
|
||
super() | ||
>super() : void | ||
>super : typeof A | ||
} | ||
} | ||
|
39 changes: 39 additions & 0 deletions
39
tests/baselines/reference/emitSuperCallBeforeEmitPropertyDeclaration1.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
//// [emitSuperCallBeforeEmitPropertyDeclaration1.ts] | ||
class A { | ||
blub = 6; | ||
} | ||
|
||
|
||
class B extends A { | ||
|
||
blub = 12; | ||
|
||
constructor() { | ||
"use strict"; | ||
'someStringForEgngInject'; | ||
super() | ||
} | ||
} | ||
|
||
//// [emitSuperCallBeforeEmitPropertyDeclaration1.js] | ||
var __extends = (this && this.__extends) || function (d, b) { | ||
for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; | ||
function __() { this.constructor = d; } | ||
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); | ||
}; | ||
var A = (function () { | ||
function A() { | ||
this.blub = 6; | ||
} | ||
return A; | ||
}()); | ||
var B = (function (_super) { | ||
__extends(B, _super); | ||
function B() { | ||
"use strict"; | ||
'someStringForEgngInject'; | ||
_super.call(this); | ||
this.blub = 12; | ||
} | ||
return B; | ||
}(A)); |
23 changes: 23 additions & 0 deletions
23
tests/baselines/reference/emitSuperCallBeforeEmitPropertyDeclaration1.symbols
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
=== tests/cases/compiler/emitSuperCallBeforeEmitPropertyDeclaration1.ts === | ||
class A { | ||
>A : Symbol(A, Decl(emitSuperCallBeforeEmitPropertyDeclaration1.ts, 0, 0)) | ||
|
||
blub = 6; | ||
>blub : Symbol(blub, Decl(emitSuperCallBeforeEmitPropertyDeclaration1.ts, 0, 9)) | ||
} | ||
|
||
|
||
class B extends A { | ||
>B : Symbol(B, Decl(emitSuperCallBeforeEmitPropertyDeclaration1.ts, 2, 1)) | ||
>A : Symbol(A, Decl(emitSuperCallBeforeEmitPropertyDeclaration1.ts, 0, 0)) | ||
|
||
blub = 12; | ||
>blub : Symbol(blub, Decl(emitSuperCallBeforeEmitPropertyDeclaration1.ts, 5, 19)) | ||
|
||
constructor() { | ||
"use strict"; | ||
'someStringForEgngInject'; | ||
super() | ||
>super : Symbol(A, Decl(emitSuperCallBeforeEmitPropertyDeclaration1.ts, 0, 0)) | ||
} | ||
} |
30 changes: 30 additions & 0 deletions
30
tests/baselines/reference/emitSuperCallBeforeEmitPropertyDeclaration1.types
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
=== tests/cases/compiler/emitSuperCallBeforeEmitPropertyDeclaration1.ts === | ||
class A { | ||
>A : A | ||
|
||
blub = 6; | ||
>blub : number | ||
>6 : number | ||
} | ||
|
||
|
||
class B extends A { | ||
>B : B | ||
>A : A | ||
|
||
blub = 12; | ||
>blub : number | ||
>12 : number | ||
|
||
constructor() { | ||
"use strict"; | ||
>"use strict" : string | ||
|
||
'someStringForEgngInject'; | ||
>'someStringForEgngInject' : string | ||
|
||
super() | ||
>super() : void | ||
>super : typeof A | ||
} | ||
} |
29 changes: 29 additions & 0 deletions
29
tests/baselines/reference/emitSuperCallBeforeEmitPropertyDeclaration1ES6.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
//// [emitSuperCallBeforeEmitPropertyDeclaration1ES6.ts] | ||
class A { | ||
blub = 6; | ||
} | ||
|
||
|
||
class B extends A { | ||
|
||
blub = 12; | ||
|
||
constructor() { | ||
'someStringForEgngInject'; | ||
super() | ||
} | ||
} | ||
|
||
//// [emitSuperCallBeforeEmitPropertyDeclaration1ES6.js] | ||
class A { | ||
constructor() { | ||
this.blub = 6; | ||
} | ||
} | ||
class B extends A { | ||
constructor() { | ||
'someStringForEgngInject'; | ||
super(); | ||
this.blub = 12; | ||
} | ||
} |
22 changes: 22 additions & 0 deletions
22
tests/baselines/reference/emitSuperCallBeforeEmitPropertyDeclaration1ES6.symbols
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
=== tests/cases/compiler/emitSuperCallBeforeEmitPropertyDeclaration1ES6.ts === | ||
class A { | ||
>A : Symbol(A, Decl(emitSuperCallBeforeEmitPropertyDeclaration1ES6.ts, 0, 0)) | ||
|
||
blub = 6; | ||
>blub : Symbol(blub, Decl(emitSuperCallBeforeEmitPropertyDeclaration1ES6.ts, 0, 9)) | ||
} | ||
|
||
|
||
class B extends A { | ||
>B : Symbol(B, Decl(emitSuperCallBeforeEmitPropertyDeclaration1ES6.ts, 2, 1)) | ||
>A : Symbol(A, Decl(emitSuperCallBeforeEmitPropertyDeclaration1ES6.ts, 0, 0)) | ||
|
||
blub = 12; | ||
>blub : Symbol(blub, Decl(emitSuperCallBeforeEmitPropertyDeclaration1ES6.ts, 5, 19)) | ||
|
||
constructor() { | ||
'someStringForEgngInject'; | ||
super() | ||
>super : Symbol(A, Decl(emitSuperCallBeforeEmitPropertyDeclaration1ES6.ts, 0, 0)) | ||
} | ||
} |
Oops, something went wrong.