summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/ion/regexp-exec.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/jit-test/tests/ion/regexp-exec.js')
-rw-r--r--js/src/jit-test/tests/ion/regexp-exec.js20
1 files changed, 20 insertions, 0 deletions
diff --git a/js/src/jit-test/tests/ion/regexp-exec.js b/js/src/jit-test/tests/ion/regexp-exec.js
new file mode 100644
index 0000000000..d9cec788ef
--- /dev/null
+++ b/js/src/jit-test/tests/ion/regexp-exec.js
@@ -0,0 +1,20 @@
+// RegExp.exec -> RegExp.test optimization should use the builtin test method.
+function f() {
+ var res = 0;
+ for (var i=0; i<100; i++) {
+ if (/a/.exec("a"))
+ res++;
+ }
+ assertEq(res, 100);
+}
+delete RegExp.prototype.test;
+gc();
+f();
+
+RegExp.prototype.test = function() { assertEq(0, 1); }
+gc();
+f();
+
+Object.defineProperty(RegExp.prototype, "test", {get: function() { assertEq(0, 1); }});
+gc();
+f();