diff options
Diffstat (limited to 'cli/tests/testdata/config.ts')
-rw-r--r-- | cli/tests/testdata/config.ts | 19 |
1 files changed, 3 insertions, 16 deletions
diff --git a/cli/tests/testdata/config.ts b/cli/tests/testdata/config.ts index cd7a1b33f..51a61e447 100644 --- a/cli/tests/testdata/config.ts +++ b/cli/tests/testdata/config.ts @@ -1,18 +1,5 @@ -// deno-lint-ignore-file - -function b() { - return function ( - _target: any, - _propertyKey: string, - _descriptor: PropertyDescriptor, - ) { - console.log("b"); - }; +function foo(bar) { + return bar; } -class A { - @b() - a() { - console.log("a"); - } -} +foo(1); |