Lines Matching refs:undefined
51 assertEquals(global, call(sloppyFunctionArrow, undefined));
53 assertEquals(undefined, call(strictFunctionArrow, undefined));
56 assertEquals(global, call(sloppyFunctionEvalArrow, undefined));
58 assertEquals(undefined, call(strictFunctionEvalArrow, undefined));
61 assertEquals(global, call(sloppyFunctionArrowEval, undefined, "this"));
63 assertEquals(undefined, call(strictFunctionArrowEval, undefined, "this"));
68 call(sloppyFunctionArrowEval, undefined, "(() => this)()"));
71 assertEquals(undefined,
72 call(strictFunctionArrowEval, undefined, "(() => this)()"));
74 assertEquals(global, call(arrowInsideWith, undefined));
76 assertEquals(global, call(arrowInsideWithEval, undefined, "this"));
78 assertEquals(global, call(arrowInsideWithEval, undefined, "(() => this)()"));