TypeScript/tests/cases/compiler/stringPropCodeGen.ts
2014-07-12 17:30:19 -07:00

13 lines
96 B
TypeScript

var a = {
"foo" : function() { },
"bar" : 5
};
a.foo();
a.bar.toString();