summaryrefslogtreecommitdiffstats
path: root/tests/benchmarks/declarative/script/data/global.js
diff options
context:
space:
mode:
Diffstat (limited to 'tests/benchmarks/declarative/script/data/global.js')
-rw-r--r--tests/benchmarks/declarative/script/data/global.js9
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/benchmarks/declarative/script/data/global.js b/tests/benchmarks/declarative/script/data/global.js
index 02472d2..5b86b4d 100644
--- a/tests/benchmarks/declarative/script/data/global.js
+++ b/tests/benchmarks/declarative/script/data/global.js
@@ -39,7 +39,16 @@
**
****************************************************************************/
+var incVar = 1;
+var total;
+
function doSomething() {
for (var i = 0; i < 10000; ++i)
Math.sin(90);
}
+
+function doIncrement() {
+ total = 0;
+ for (var i = 0; i < 100000; ++i)
+ total += incVar;
+}