bug-1354480.js (271B)
1 // |jit-test| error: TypeError 2 test = "function f(a) { return a } f`a$b`"; 3 evalWithCache(test, {}); 4 dbg = new Debugger(); 5 gczeal(9, 1); 6 dbg.findScripts('January 0 0 is invalid'); 7 function evalWithCache(code, ctx) { 8 ctx.global = newGlobal(); 9 evaluate(code, ctx) 10 }