Lines Matching refs:this
7 // notice, this list of conditions and the following disclaimer.
9 // copyright notice, this list of conditions and the following
14 // from this software without specific prior written permission.
16 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 // Load x from the prototype of this. Make sure to initialize the IC.
31 this.__proto__ = { x: 42 };
32 for (var i = 0; i < 3; i++) assertEquals(42, LoadX(this));
35 this.x = 87;
36 for (var i = 0; i < 3; i++) assertEquals(87, LoadX(this));
40 delete this.x;
41 for (var i = 0; i < 3; i++) assertEquals(42, LoadX(this));
44 this.x = 99;
45 for (var i = 0; i < 3; i++) assertEquals(99, LoadX(this));