TypeScript/tests/baselines/reference/computedPropertyNames37_ES5.types
2015-02-04 15:33:53 -08:00

27 lines
422 B
Plaintext

=== tests/cases/conformance/es6/computedProperties/computedPropertyNames37_ES5.ts ===
class Foo { x }
>Foo : Foo
>x : any
class Foo2 { x; y }
>Foo2 : Foo2
>x : any
>y : any
class C {
>C : C
[s: number]: Foo2;
>s : number
>Foo2 : Foo2
// Computed properties
get ["get1"]() { return new Foo }
>new Foo : Foo
>Foo : typeof Foo
set ["set1"](p: Foo2) { }
>p : Foo2
>Foo2 : Foo2
}