Searched refs:delete_element (Results 1 – 2 of 2) sorted by relevance
/external/v8/test/mjsunit/ |
D | strict-mode.js | 475 function delete_element(o, i) { function 489 assertThrows(function() { delete_element(object, "1"); }, TypeError); 490 assertThrows(function() { delete_element(object, 1); }, TypeError); 492 assertThrows(function() { delete_element(object, "7"); }, TypeError); 493 assertThrows(function() { delete_element(object, 7); }, TypeError); 495 assertThrows(function() { delete_element(object, "3.14"); }, TypeError); 496 assertThrows(function() { delete_element(object, 3.14); }, TypeError);
|
/external/chromium_org/v8/test/mjsunit/ |
D | strict-mode.js | 475 function delete_element(o, i) { function 489 assertThrows(function() { delete_element(object, "1"); }, TypeError); 490 assertThrows(function() { delete_element(object, 1); }, TypeError); 492 assertThrows(function() { delete_element(object, "7"); }, TypeError); 493 assertThrows(function() { delete_element(object, 7); }, TypeError); 495 assertThrows(function() { delete_element(object, "3.14"); }, TypeError); 496 assertThrows(function() { delete_element(object, 3.14); }, TypeError);
|