TypeScript/tests/baselines/reference/constructorImplementationWithDefaultValues.symbols
2015-04-15 16:44:20 -07:00

51 lines
1.9 KiB
Plaintext

=== tests/cases/conformance/classes/constructorDeclarations/constructorParameters/constructorImplementationWithDefaultValues.ts ===
class C {
>C : Symbol(C, Decl(constructorImplementationWithDefaultValues.ts, 0, 0))
constructor(x);
>x : Symbol(x, Decl(constructorImplementationWithDefaultValues.ts, 1, 16))
constructor(x = 1) {
>x : Symbol(x, Decl(constructorImplementationWithDefaultValues.ts, 2, 16))
var y = x;
>y : Symbol(y, Decl(constructorImplementationWithDefaultValues.ts, 3, 11))
>x : Symbol(x, Decl(constructorImplementationWithDefaultValues.ts, 2, 16))
}
}
class D<T> {
>D : Symbol(D, Decl(constructorImplementationWithDefaultValues.ts, 5, 1))
>T : Symbol(T, Decl(constructorImplementationWithDefaultValues.ts, 7, 8))
constructor(x);
>x : Symbol(x, Decl(constructorImplementationWithDefaultValues.ts, 8, 16))
constructor(x:T = null) {
>x : Symbol(x, Decl(constructorImplementationWithDefaultValues.ts, 9, 16))
>T : Symbol(T, Decl(constructorImplementationWithDefaultValues.ts, 7, 8))
var y = x;
>y : Symbol(y, Decl(constructorImplementationWithDefaultValues.ts, 10, 11))
>x : Symbol(x, Decl(constructorImplementationWithDefaultValues.ts, 9, 16))
}
}
class E<T extends Date> {
>E : Symbol(E, Decl(constructorImplementationWithDefaultValues.ts, 12, 1))
>T : Symbol(T, Decl(constructorImplementationWithDefaultValues.ts, 14, 8))
>Date : Symbol(Date, Decl(lib.d.ts, 633, 23), Decl(lib.d.ts, 815, 11))
constructor(x);
>x : Symbol(x, Decl(constructorImplementationWithDefaultValues.ts, 15, 16))
constructor(x: T = null) {
>x : Symbol(x, Decl(constructorImplementationWithDefaultValues.ts, 16, 16))
>T : Symbol(T, Decl(constructorImplementationWithDefaultValues.ts, 14, 8))
var y = x;
>y : Symbol(y, Decl(constructorImplementationWithDefaultValues.ts, 17, 11))
>x : Symbol(x, Decl(constructorImplementationWithDefaultValues.ts, 16, 16))
}
}