OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:push_call
(Results
1 - 1
of
1
) sorted by null
/external/chromium_org/v8/test/mjsunit/
object-seal.js
204
var
push_call
= function(a) { a.push(10); return a; }
function
207
push_call
(obj);
212
assertThrows(function() {
push_call
(obj); }, TypeError);
216
assertDoesNotThrow(function() {
push_call
(objControl); });
237
push_call
= function(a) { a.push(1000); return a; }
241
push_call
(obj);
245
%OptimizeFunctionOnNextCall(
push_call
);
247
push_call
(obj);
249
assertOptimized(
push_call
);
252
assertThrows(function() {
push_call
(obj); }, TypeError)
[
all
...]
Completed in 44 milliseconds