Lines Matching refs:strict
24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
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.
35 Object.defineProperty(prototype, "strict", {
36 get: function() { "use strict"; assertSame(strict_type, typeof this); },
37 set: function() { "use strict"; assertSame(strict_type, typeof this); }
39 primitive.strict = primitive.strict;
40 // Check that non-strict mode passes wrapped this value.