TypeScript/tests/cases/compiler/this_inside-object-literal-getters-and-setters.ts
2014-07-12 17:30:19 -07:00

16 lines
310 B
TypeScript

module ObjectLiteral {
var ThisInObjectLiteral = {
_foo: '1',
get foo(): string {
return this._foo;
},
set foo(value: string) {
this._foo = value;
},
test: function () {
return this._foo;
}
}
}