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.
28 function f() { return this; }
30 assertFalse(this == null); // the global object shouldn't be null or undefined
31 assertEquals('[object global]', String(this));
33 assertTrue(this === this);
34 assertTrue(this === (function() { return this; })());
35 assertTrue(this === f());