Lines Matching refs:this_value
28 var this_value = Symbol(); variable
31 result = Function.prototype.bind.call(proxy, this_value, "foo");
34 assertEquals(this_value, result());
41 assertEquals(["apply", target, this_value, ["foo"]], log[4]);
49 result = Function.prototype.bind.call(proxy, this_value, "foo");
52 assertEquals(this_value, result());
59 assertEquals(["apply", target, this_value, ["foo"]], log[4]);
70 result = Function.prototype.bind.call(proxy, this_value, "foo");
72 assertEquals(this_value, result());
83 result = Function.prototype.bind.call(proxy, this_value, "foo");
85 assertEquals(this_value, result());
96 result = Function.prototype.bind.call(proxy, this_value, "foo");
98 assertEquals(this_value, result());
109 result = Function.prototype.bind.call(proxy, this_value, "foo");
111 assertEquals(this_value, result());
122 result = Function.prototype.bind.call(proxy, this_value, "foo");
124 assertEquals(this_value, result());
135 result = Function.prototype.bind.call(() => 42, this_value, "foo");