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

6 lines
83 B
TypeScript

module bar {
export function bar() {
return this;
}
}
var z = bar.bar();