TypeScript/tests/baselines/reference/lift.symbols
Wesley Wigham 5353475fce Always collect type and symbol baselines (#18621)
* Always generate type & symbol baselines

* Accept changed shadowed baselines

* Accept brand new type and symbol baselines

* Allow `getTypeAtLocation` to return undefined in the type writer

* Accept baselines which had missing type information

* Bind container for dynamically names enum members so they may be printed

* Accept type/symbol baselines for enums with computed members

* First pass at reducing typeWriter memory overhead

* Use generators to allow for type and symbol baselines with no cache

* Accept new baselines for tests whose output was fixed by better newline splitting

* Hard cap on number of declarations printed, cache declaration print text

* handle differing newlines better still to handle RWC newlines

* Lower abridging count, accept abridged baselines

* Limit max RWC error output size, limit RWC type and symbol baseline input size

* Move skip logic into type and symbol baseliner to streamline error handling

* Accept removal of empty baselines

* Canonicalize path earlier to handle odd paths in input files

* Do canonicalization earlier still, also ensure parallel perf profiles for different targets do not trample one another

* No need to pathify again
2017-09-22 15:52:04 -07:00

51 lines
1.4 KiB
Plaintext

=== tests/cases/compiler/lift.ts ===
class B {
>B : Symbol(B, Decl(lift.ts, 0, 0))
constructor(public y:number) {
>y : Symbol(B.y, Decl(lift.ts, 1, 16))
}
public ll:number; // to be shadowed
>ll : Symbol(B.ll, Decl(lift.ts, 2, 5))
}
class C extends B {
>C : Symbol(C, Decl(lift.ts, 4, 1))
>B : Symbol(B, Decl(lift.ts, 0, 0))
constructor(y:number,z:number,w:number) {
>y : Symbol(y, Decl(lift.ts, 7, 16))
>z : Symbol(z, Decl(lift.ts, 7, 25))
>w : Symbol(w, Decl(lift.ts, 7, 34))
super(y)
>super : Symbol(B, Decl(lift.ts, 0, 0))
>y : Symbol(y, Decl(lift.ts, 7, 16))
var x=10+w;
>x : Symbol(x, Decl(lift.ts, 9, 11))
>w : Symbol(w, Decl(lift.ts, 7, 34))
var ll=x*w;
>ll : Symbol(ll, Decl(lift.ts, 10, 11))
>x : Symbol(x, Decl(lift.ts, 9, 11))
>w : Symbol(w, Decl(lift.ts, 7, 34))
}
public liftxyz () { return x+z+this.y; }
>liftxyz : Symbol(C.liftxyz, Decl(lift.ts, 11, 5))
>this.y : Symbol(B.y, Decl(lift.ts, 1, 16))
>this : Symbol(C, Decl(lift.ts, 4, 1))
>y : Symbol(B.y, Decl(lift.ts, 1, 16))
public liftxylocllz () { return x+z+this.y+this.ll; }
>liftxylocllz : Symbol(C.liftxylocllz, Decl(lift.ts, 13, 44))
>this.y : Symbol(B.y, Decl(lift.ts, 1, 16))
>this : Symbol(C, Decl(lift.ts, 4, 1))
>y : Symbol(B.y, Decl(lift.ts, 1, 16))
>this.ll : Symbol(B.ll, Decl(lift.ts, 2, 5))
>this : Symbol(C, Decl(lift.ts, 4, 1))
>ll : Symbol(B.ll, Decl(lift.ts, 2, 5))
}