swc/node-swc/tests/issue-4734/1/index.ts
2022-05-21 23:18:43 +09:00

8 lines
170 B
TypeScript

class TestClass {
@foo
abc() { }
}
function foo(target: unknown, propertyKey: string | symbol) {
console.log(`Decorating ${target}.${String(propertyKey)}`)
}