mirror of
https://github.com/denoland/deno.git
synced 2024-12-25 00:29:09 -05:00
272e9b82eb
Fixes #8212
21 lines
305 B
TypeScript
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();
|