michael@0: // Bug 758509 changed things so that a JSScript is partially initialized when michael@0: // it is created, which is prior to bytecode generation; full initialization michael@0: // only occurs after bytecode generation. This means that michael@0: // JSScript::markChildren() must deal with partially-initialized JSScripts. michael@0: // This test forces that to happen, because each let block allocates a michael@0: // StaticBlockObject. All that should happen is that we don't crash. michael@0: michael@0: let t = 0; michael@0: gczeal(2,1); michael@0: eval("\ michael@0: let x = 3, y = 4;\ michael@0: let (x = x+0, y = 12) { t += (x + y); } \ michael@0: let (x = x+1, y = 12) { t += (x + y); } \ michael@0: let (x = x+2, y = 12) { t += (x + y); } \ michael@0: let (x = x+3, y = 12) { t += (x + y); } \ michael@0: let (x = x+4, y = 12) { t += (x + y); } \ michael@0: let (x = x+5, y = 12) { t += (x + y); } \ michael@0: let (x = x+6, y = 12) { t += (x + y); } \ michael@0: let (x = x+7, y = 12) { t += (x + y); } \ michael@0: let (x = x+8, y = 12) { t += (x + y); } \ michael@0: let (x = x+9, y = 12) { t += (x + y); } \ michael@0: t += (x + y);\ michael@0: assertEq(t, 202);\ michael@0: ");