Lines Matching full:caller
1060 assertThrows(function() { strict.caller; }, TypeError);
1062 assertThrows(function() { strict.caller = 42; }, TypeError);
1066 assertThrows(function() { another.caller; }, TypeError);
1068 assertThrows(function() { another.caller = 42; }, TypeError);
1072 assertThrows(function() { third.caller; }, TypeError);
1074 assertThrows(function() { third.caller = 42; }, TypeError);
1077 CheckFunctionPillDescriptor(strict, "caller");
1079 CheckFunctionPillDescriptor(another, "caller");
1081 CheckFunctionPillDescriptor(third, "caller");
1090 assertThrows(function() { TheClass.caller; }, TypeError);
1114 CheckArgumentsPillDescriptor(args, "caller");
1121 CheckArgumentsPillDescriptor(args, "caller");
1133 CheckArgumentsPillDescriptor(args, "caller");
1140 CheckArgumentsPillDescriptor(args, "caller");
1147 return return_my_caller.caller;
1178 return recurse(n, function() { return non_strict.caller; });
1207 return Object.getOwnPropertyDescriptor(non_strict, "caller").value;