aboutsummaryrefslogtreecommitdiff
path: root/test/transpiler/decorator-export-default-class-fixture-anon.ts
blob: bf81afa2c27c0ba99713b854df6aa598c2e2043f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
function decorator(target: any, propertyKey: any) {
  target[propertyKey + "decorated"] = true;
}

export default class {
  @decorator
  method() {
    return 42;
  }
}