TypeScript/tests/baselines/reference/super.types
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

100 lines
1.6 KiB
Plaintext

=== tests/cases/compiler/super.ts ===
class Base {
>Base : Base
constructor() {
var x;
>x : any
}
public foo() {
>foo : () => string
return "base";
>"base" : "base"
}
public bar() {
>bar : () => string
return "basebar";
>"basebar" : "basebar"
}
}
class Sub1 extends Base {
>Sub1 : Sub1
>Base : Base
public foo() {
>foo : () => string
return "sub1" + super.foo() + super.bar();
>"sub1" + super.foo() + super.bar() : string
>"sub1" + super.foo() : string
>"sub1" : "sub1"
>super.foo() : string
>super.foo : () => string
>super : Base
>foo : () => string
>super.bar() : string
>super.bar : () => string
>super : Base
>bar : () => string
}
}
class SubSub1 extends Sub1 {
>SubSub1 : SubSub1
>Sub1 : Sub1
public foo() {
>foo : () => string
return "subsub1" + super.foo();
>"subsub1" + super.foo() : string
>"subsub1" : "subsub1"
>super.foo() : string
>super.foo : () => string
>super : Sub1
>foo : () => string
}
}
class Base2 {
>Base2 : Base2
public foo() {
>foo : () => void
super.foo();
>super.foo() : any
>super.foo : any
>super : any
>foo : any
}
}
var s = new Sub1();
>s : Sub1
>new Sub1() : Sub1
>Sub1 : typeof Sub1
var ss = new SubSub1();
>ss : SubSub1
>new SubSub1() : SubSub1
>SubSub1 : typeof SubSub1
s.foo() + ss.foo();
>s.foo() + ss.foo() : string
>s.foo() : string
>s.foo : () => string
>s : Sub1
>foo : () => string
>ss.foo() : string
>ss.foo : () => string
>ss : SubSub1
>foo : () => string