1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/js/src/jit-test/tests/basic/testBug683470.js Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,15 @@ 1.4 +// |jit-test| debug 1.5 + 1.6 +f = (function() { 1.7 + function b() { 1.8 + "use strict"; 1.9 + Object.defineProperty(this, "x", ({})); 1.10 + } 1.11 + for each(let d in [0, 0]) { 1.12 + try { 1.13 + b(d); 1.14 + } catch (e) {} 1.15 + } 1.16 +}) 1.17 +trap(f, 40, undefined); 1.18 +f();