MCPcopy Index your code
hub / github.com/nodejs/node / TestNonStrict

Function TestNonStrict

deps/v8/test/debugger/debug/debug-receiver.js:99–104  ·  view source on GitHub ↗
(receiver)

Source from the content-addressed store, hash-verified

97// the receiver for non-strict mode functions.
98function NonStrict() { debugger; }
99function TestNonStrict(receiver) {
100 // null and undefined should be transformed to the global object and
101 // primitives should be wrapped.
102 expected_receiver = (receiver == null) ? this : Object(receiver);
103 NonStrict.call(receiver);
104}
105
106listener_delegate = function(exec_state) {
107 var receiver = exec_state.frame().receiver();

Callers 1

debug-receiver.jsFile · 0.85

Calls 2

ObjectFunction · 0.85
callMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…