mirror of
https://github.com/microsoft/TypeScript.git
synced 2025-11-18 17:21:48 +00:00
Move tests into correct location
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
=== tests/cases/conformance/classes/superCallBeforeThisAccessing1.ts ===
|
||||
=== tests/cases/conformance/es6/classDeclaration/superCallBeforeThisAccessing1.ts ===
|
||||
declare var Factory: any
|
||||
>Factory : Symbol(Factory, Decl(superCallBeforeThisAccessing1.ts, 0, 11))
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
=== tests/cases/conformance/classes/superCallBeforeThisAccessing1.ts ===
|
||||
=== tests/cases/conformance/es6/classDeclaration/superCallBeforeThisAccessing1.ts ===
|
||||
declare var Factory: any
|
||||
>Factory : any
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
=== tests/cases/conformance/classes/superCallBeforeThisAccessing2.ts ===
|
||||
=== tests/cases/conformance/es6/classDeclaration/superCallBeforeThisAccessing2.ts ===
|
||||
class Base {
|
||||
>Base : Symbol(Base, Decl(superCallBeforeThisAccessing2.ts, 0, 0))
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
=== tests/cases/conformance/classes/superCallBeforeThisAccessing2.ts ===
|
||||
=== tests/cases/conformance/es6/classDeclaration/superCallBeforeThisAccessing2.ts ===
|
||||
class Base {
|
||||
>Base : Base
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
tests/cases/conformance/classes/superCallBeforeThisAccessing3.ts(9,9): error TS17009: 'super' must be called before accessing 'this' in the constructor of a derived class.
|
||||
tests/cases/conformance/es6/classDeclaration/superCallBeforeThisAccessing3.ts(9,9): error TS17009: 'super' must be called before accessing 'this' in the constructor of a derived class.
|
||||
|
||||
|
||||
==== tests/cases/conformance/classes/superCallBeforeThisAccessing3.ts (1 errors) ====
|
||||
==== tests/cases/conformance/es6/classDeclaration/superCallBeforeThisAccessing3.ts (1 errors) ====
|
||||
class Base {
|
||||
constructor(c) { }
|
||||
}
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
tests/cases/conformance/classes/superCallBeforeThisAccessing4.ts(3,5): error TS17005: A constructor cannot contain a 'super' call when its class extends 'null'
|
||||
tests/cases/conformance/classes/superCallBeforeThisAccessing4.ts(11,5): error TS17005: A constructor cannot contain a 'super' call when its class extends 'null'
|
||||
tests/cases/conformance/es6/classDeclaration/superCallBeforeThisAccessing4.ts(3,5): error TS17005: A constructor cannot contain a 'super' call when its class extends 'null'
|
||||
tests/cases/conformance/es6/classDeclaration/superCallBeforeThisAccessing4.ts(11,5): error TS17005: A constructor cannot contain a 'super' call when its class extends 'null'
|
||||
|
||||
|
||||
==== tests/cases/conformance/classes/superCallBeforeThisAccessing4.ts (2 errors) ====
|
||||
==== tests/cases/conformance/es6/classDeclaration/superCallBeforeThisAccessing4.ts (2 errors) ====
|
||||
class D extends null {
|
||||
private _t;
|
||||
constructor() {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
=== tests/cases/conformance/classes/superCallBeforeThisAccessing5.ts ===
|
||||
=== tests/cases/conformance/es6/classDeclaration/superCallBeforeThisAccessing5.ts ===
|
||||
class D extends null {
|
||||
>D : Symbol(D, Decl(superCallBeforeThisAccessing5.ts, 0, 0))
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
=== tests/cases/conformance/classes/superCallBeforeThisAccessing5.ts ===
|
||||
=== tests/cases/conformance/es6/classDeclaration/superCallBeforeThisAccessing5.ts ===
|
||||
class D extends null {
|
||||
>D : D
|
||||
>null : null
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
tests/cases/conformance/classes/superCallBeforeThisAccessing6.ts(7,15): error TS17009: 'super' must be called before accessing 'this' in the constructor of a derived class.
|
||||
tests/cases/conformance/es6/classDeclaration/superCallBeforeThisAccessing6.ts(7,15): error TS17009: 'super' must be called before accessing 'this' in the constructor of a derived class.
|
||||
|
||||
|
||||
==== tests/cases/conformance/classes/superCallBeforeThisAccessing6.ts (1 errors) ====
|
||||
==== tests/cases/conformance/es6/classDeclaration/superCallBeforeThisAccessing6.ts (1 errors) ====
|
||||
class Base {
|
||||
constructor(c) { }
|
||||
}
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
tests/cases/conformance/classes/superCallBeforeThisAccessing7.ts(8,16): error TS17009: 'super' must be called before accessing 'this' in the constructor of a derived class.
|
||||
tests/cases/conformance/es6/classDeclaration/superCallBeforeThisAccessing7.ts(8,16): error TS17009: 'super' must be called before accessing 'this' in the constructor of a derived class.
|
||||
|
||||
|
||||
==== tests/cases/conformance/classes/superCallBeforeThisAccessing7.ts (1 errors) ====
|
||||
==== tests/cases/conformance/es6/classDeclaration/superCallBeforeThisAccessing7.ts (1 errors) ====
|
||||
class Base {
|
||||
constructor(c) { }
|
||||
}
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
=== tests/cases/conformance/classes/superCallBeforeThisAccessing8.ts ===
|
||||
=== tests/cases/conformance/es6/classDeclaration/superCallBeforeThisAccessing8.ts ===
|
||||
class Base {
|
||||
>Base : Symbol(Base, Decl(superCallBeforeThisAccessing8.ts, 0, 0))
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
=== tests/cases/conformance/classes/superCallBeforeThisAccessing8.ts ===
|
||||
=== tests/cases/conformance/es6/classDeclaration/superCallBeforeThisAccessing8.ts ===
|
||||
class Base {
|
||||
>Base : Base
|
||||
|
||||
|
||||
Reference in New Issue
Block a user