aboutsummaryrefslogtreecommitdiffstats
path: root/tests/benchmarks/declarative/script/data/slot_complex_js.js
diff options
context:
space:
mode:
Diffstat (limited to 'tests/benchmarks/declarative/script/data/slot_complex_js.js')
-rw-r--r--tests/benchmarks/declarative/script/data/slot_complex_js.js8
1 files changed, 0 insertions, 8 deletions
diff --git a/tests/benchmarks/declarative/script/data/slot_complex_js.js b/tests/benchmarks/declarative/script/data/slot_complex_js.js
deleted file mode 100644
index 64a1f65daa..0000000000
--- a/tests/benchmarks/declarative/script/data/slot_complex_js.js
+++ /dev/null
@@ -1,8 +0,0 @@
-function myCustomFunction(n) {
- var a = 1;
- while (n > 0) {
- a = a * n;
- n--;
- }
- return a;
-}