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 // Test that getters and setters pass unwrapped this values in strict mode
29 // and wrapped this values is non-strict mode.
33 // Check that strict mode passes unwrapped this value.
36 get: function() { "use strict"; assertSame(strict_type, typeof this); },
37 set: function() { "use strict"; assertSame(strict_type, typeof this); }
40 // Check that non-strict mode passes wrapped this value.
43 get: function() { assertSame(sloppy_type, typeof this); },
44 set: function() { assertSame(sloppy_type, typeof this); }