diff options
Diffstat (limited to 'js/src/jit-test/tests/basic/bug951213.js')
-rw-r--r-- | js/src/jit-test/tests/basic/bug951213.js | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/js/src/jit-test/tests/basic/bug951213.js b/js/src/jit-test/tests/basic/bug951213.js new file mode 100644 index 0000000000..0607980da9 --- /dev/null +++ b/js/src/jit-test/tests/basic/bug951213.js @@ -0,0 +1,8 @@ + +enableShellAllocationMetadataBuilder(); +function foo(x, y) { + this.g = x + y; +} +var a = 0; +var b = { valueOf: function() Object.defineProperty(Object.prototype, 'g', {}) }; +var c = new foo(a, b); |