Home | History | Annotate | Download | only in mjsunit

Lines Matching refs:frozen

786   var frozen = Object.freeze({});
794 assertThrows(function() { strict(frozen); }, TypeError);
895 var frozen = Object.freeze({});
902 assertThrows(function() { frozen[zero_number] = "value"; }, TypeError);
904 assertThrows(function() { frozen[zero_symbol] = "value"; }, TypeError);
906 assertThrows(function() { frozen[zero_string] = "value"; }, TypeError);