Home
last modified time | relevance | path

Searched refs:shift_call (Results 1 – 1 of 1) sorted by relevance

/external/v8/test/mjsunit/
Dobject-seal.js226 var shift_call = function(a) { a.shift(1000); return a; } function
229 shift_call(obj);
233 %OptimizeFunctionOnNextCall(shift_call);
235 shift_call(obj);
237 assertOptimized(shift_call);
240 assertThrows(function() { shift_call(obj); }, TypeError);
242 assertUnoptimized(shift_call);
244 assertDoesNotThrow(function() { shift_call(objControl); });