TypeScript/tests/cases/compiler/functionsInClassExpressions.ts

10 lines
160 B
TypeScript
Raw Normal View History

2015-10-12 06:57:17 +02:00
let Foo = class {
constructor() {
this.bar++;
}
bar = 0;
inc = () => {
this.bar++;
}
m() { return this.bar; }
}