Home | History | Annotate | Download | only in mjsunit

Lines Matching refs:third

1063   var third = (function() { "use strict"; return function() {}; })();
1064 assertThrows(function() { third.caller; }, TypeError);
1065 assertThrows(function() { third.arguments; }, TypeError);
1066 assertThrows(function() { third.caller = 42; }, TypeError);
1067 assertThrows(function() { third.arguments = 42; }, TypeError);
1073 CheckPillDescriptor(third, "caller");
1074 CheckPillDescriptor(third, "arguments");