swc/node-swc/tests/issue-4734/1/index.ts

8 lines
170 B
TypeScript
Raw Normal View History

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