Lines Matching defs:caller
97 // situation where the caller does not have access.
667 // native JavaScript builtins in case such a builtin was the caller).
676 Handle<JSFunction> caller = it.MaterializeFunction();
678 // Censor if the caller is not a sloppy mode function.
681 if (is_strict(caller->shared().language_mode())) {
684 // Don't return caller from another security context.
685 if (!AllowAccessToFunction(isolate->context(), *caller)) {
688 return caller;
701 Handle<JSFunction> caller;
702 // We don't support caller access with correctness fuzzing.
703 if (!FLAG_correctness_fuzzer_suppressions && maybe_caller.ToHandle(&caller)) {
704 result = caller;