TypeScript/tests/baselines/reference/computedPropertyNames40_ES6.js

27 lines
416 B
TypeScript
Raw Normal View History

//// [computedPropertyNames40_ES6.ts]
class Foo { x }
class Foo2 { x; y }
class C {
[s: string]: () => Foo2;
// Computed properties
[""]() { return new Foo }
[""]() { return new Foo2 }
}
//// [computedPropertyNames40_ES6.js]
2015-03-16 00:29:41 +01:00
class Foo {
}
class Foo2 {
}
class C {
// Computed properties
2015-03-16 00:29:41 +01:00
[""]() {
return new Foo;
2015-03-16 00:29:41 +01:00
}
[""]() {
return new Foo2;
2015-03-16 00:29:41 +01:00
}
}