summaryrefslogtreecommitdiff
path: root/jstests/core/js_jit.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/core/js_jit.js')
-rw-r--r--jstests/core/js_jit.js44
1 files changed, 22 insertions, 22 deletions
diff --git a/jstests/core/js_jit.js b/jstests/core/js_jit.js
index 4ccdd2917ae..72290d45758 100644
--- a/jstests/core/js_jit.js
+++ b/jstests/core/js_jit.js
@@ -5,36 +5,36 @@
* implementations correctly. We force the JIT to kick in by using large loops.
*/
(function() {
- 'use strict';
+'use strict';
- function testDBCollection() {
- const c = new DBCollection(null, null, "foo", "test.foo");
- for (let i = 0; i < 100000; i++) {
- if (c.toString() != "test.foo") {
- throw i;
- }
+function testDBCollection() {
+ const c = new DBCollection(null, null, "foo", "test.foo");
+ for (let i = 0; i < 100000; i++) {
+ if (c.toString() != "test.foo") {
+ throw i;
}
}
+}
- function testDB() {
- const c = new DB(null, "test");
- for (let i = 0; i < 100000; i++) {
- if (c.toString() != "test") {
- throw i;
- }
+function testDB() {
+ const c = new DB(null, "test");
+ for (let i = 0; i < 100000; i++) {
+ if (c.toString() != "test") {
+ throw i;
}
}
+}
- function testDBQuery() {
- const c = DBQuery('a', 'b', 'c', 'd');
- for (let i = 0; i < 100000; i++) {
- if (c.toString() != "DBQuery: d -> null") {
- throw i;
- }
+function testDBQuery() {
+ const c = DBQuery('a', 'b', 'c', 'd');
+ for (let i = 0; i < 100000; i++) {
+ if (c.toString() != "DBQuery: d -> null") {
+ throw i;
}
}
+}
- testDBCollection();
- testDB();
- testDBQuery();
+testDBCollection();
+testDB();
+testDBQuery();
})(); \ No newline at end of file