deno/cli/tests/config.ts

18 lines
226 B
TypeScript
Raw Normal View History

/* eslint-disable */
function b() {
return function (
_target: any,
_propertyKey: string,
_descriptor: PropertyDescriptor,
) {
console.log("b");
};
}
class A {
@b()
a() {
console.log("a");
}
}