summaryrefslogtreecommitdiff
path: root/tests/testdata/run/decorators/experimental/runtime
diff options
context:
space:
mode:
authorMohammad Sulaiman <mohammad.sulaiman@exalt.ps>2024-11-05 08:39:05 +0200
committerGitHub <noreply@github.com>2024-11-05 06:39:05 +0000
commit89f0b796bd442ff352c3f93f69156ca6d85bfd5e (patch)
tree3ac2a58c6d85f6af57eb2c6b07b1f2d0e8687b3a /tests/testdata/run/decorators/experimental/runtime
parentf9a05068d6de247574fb764044a446d1d7ed2e9b (diff)
chore: deprecate run itests (#26444)
Diffstat (limited to 'tests/testdata/run/decorators/experimental/runtime')
-rw-r--r--tests/testdata/run/decorators/experimental/runtime/main.out7
-rw-r--r--tests/testdata/run/decorators/experimental/runtime/main.ts42
2 files changed, 0 insertions, 49 deletions
diff --git a/tests/testdata/run/decorators/experimental/runtime/main.out b/tests/testdata/run/decorators/experimental/runtime/main.out
deleted file mode 100644
index 0fc1d4590..000000000
--- a/tests/testdata/run/decorators/experimental/runtime/main.out
+++ /dev/null
@@ -1,7 +0,0 @@
-@A evaluated
-@B evaluated
-@B called
-@A called
-fn() called from @A
-fn() called from @B
-C.test() called
diff --git a/tests/testdata/run/decorators/experimental/runtime/main.ts b/tests/testdata/run/decorators/experimental/runtime/main.ts
deleted file mode 100644
index 40a26bbd4..000000000
--- a/tests/testdata/run/decorators/experimental/runtime/main.ts
+++ /dev/null
@@ -1,42 +0,0 @@
-// deno-lint-ignore-file
-function a() {
- console.log("@A evaluated");
- return function (
- target: any,
- propertyKey: string,
- descriptor: PropertyDescriptor,
- ) {
- console.log("@A called");
- const fn = descriptor.value;
- descriptor.value = function () {
- console.log("fn() called from @A");
- fn();
- };
- };
-}
-
-function b() {
- console.log("@B evaluated");
- return function (
- target: any,
- propertyKey: string,
- descriptor: PropertyDescriptor,
- ) {
- console.log("@B called");
- const fn = descriptor.value;
- descriptor.value = function () {
- console.log("fn() called from @B");
- fn();
- };
- };
-}
-
-class C {
- @a()
- @b()
- static test() {
- console.log("C.test() called");
- }
-}
-
-C.test();