Home
last modified time | relevance | path

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

/external/v8/test/mjsunit/
Dstrict-mode.js463 function delete_element(o, i) { function
477 assertThrows(function() { delete_element(object, "1"); }, TypeError);
478 assertThrows(function() { delete_element(object, 1); }, TypeError);
480 assertThrows(function() { delete_element(object, "7"); }, TypeError);
481 assertThrows(function() { delete_element(object, 7); }, TypeError);
483 assertThrows(function() { delete_element(object, "3.14"); }, TypeError);
484 assertThrows(function() { delete_element(object, 3.14); }, TypeError);