summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/basic/testBrandedVsGeneric.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/jit-test/tests/basic/testBrandedVsGeneric.js')
-rw-r--r--js/src/jit-test/tests/basic/testBrandedVsGeneric.js17
1 files changed, 17 insertions, 0 deletions
diff --git a/js/src/jit-test/tests/basic/testBrandedVsGeneric.js b/js/src/jit-test/tests/basic/testBrandedVsGeneric.js
new file mode 100644
index 000000000..f0a244bcc
--- /dev/null
+++ b/js/src/jit-test/tests/basic/testBrandedVsGeneric.js
@@ -0,0 +1,17 @@
+const C = function (a, b, c) {
+ return function C() {
+ this.m1 = function () a;
+ this.m2 = function () b;
+ this.m3 = function () c;
+ }
+}(2,3,4);
+var c = new C();
+var d = function (e) {return {m0: function () e}}(5);
+for (var i = 0; i < 5; i++)
+ d.m0();
+C.call(d);
+d.__iterator__ = function() {yield 55};
+for (i = 0; i < 5; i++) {
+ for (j in d)
+ print(j);
+}