TypeScript/tests/baselines/reference/constructorArgs.types

34 lines
509 B
Plaintext
Raw Normal View History

2014-08-15 23:33:16 +02:00
=== tests/cases/compiler/constructorArgs.ts ===
interface Options {
>Options : Options
value: number;
>value : number
}
class Super {
>Super : Super
constructor(value:number) {
>value : number
}
}
class Sub extends Super {
>Sub : Sub
>Super : Super
constructor(public options:Options) {
>options : Options
>Options : Options
super(options.value);
>super(options.value) : void
2014-08-28 21:31:37 +02:00
>super : typeof Super
2014-08-15 23:33:16 +02:00
>options.value : number
>options : Options
>value : number
}
}