1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-25 00:29:09 -05:00
denoland-deno/cli/tests/no_check_decorators.ts
2020-11-02 22:33:43 +11:00

21 lines
305 B
TypeScript

/* eslint-disable */
function a() {
console.log("a(): evaluated");
return (
_target: any,
_propertyKey: string,
_descriptor: PropertyDescriptor,
) => {
console.log("a(): called");
};
}
class B {
@a()
method() {
console.log("method");
}
}
const b = new B();
b.method();