Home
last modified time | relevance | path

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

/external/v8/test/mjsunit/
Dobject-seal.js191 var push_call = function(a) { a.push(10); return a; } function
194 push_call(obj);
199 assertThrows(function() { push_call(obj); }, TypeError);
203 assertDoesNotThrow(function() { push_call(objControl); });
224 push_call = function(a) { a.push(1000); return a; }
228 push_call(obj);
232 %OptimizeFunctionOnNextCall(push_call);
234 push_call(obj);
236 assertOptimized(push_call);
239 assertThrows(function() { push_call(obj); }, TypeError);
[all …]