TypeScript/tests/baselines/reference/typeOfPrototype.types
2014-08-15 14:37:48 -07:00

20 lines
368 B
Plaintext

=== tests/cases/compiler/typeOfPrototype.ts ===
class Foo {
>Foo : Foo
bar = 3;
>bar : number
static bar = '';
>bar : string
}
Foo.prototype.bar = undefined; // Should be OK
>Foo.prototype.bar = undefined : undefined
>Foo.prototype.bar : number
>Foo.prototype : Foo
>Foo : typeof Foo
>prototype : Foo
>bar : number
>undefined : undefined