• Home
  • Raw
  • Download

Lines Matching refs:constructor

31     delete String.prototype.constructor;  method in delete
66 function checkGet(x, constructor) argument
69 …Object.defineProperty(constructor.prototype, "foo", { get: function() { checkOkay = typeof this ==…
71 delete constructor.prototype.foo;
75 function checkSet(x, constructor) argument
78 …Object.defineProperty(constructor.prototype, "foo", { set: function() { checkOkay = typeof this ==…
80 delete constructor.prototype.foo;
84 function checkGetStrict(x, constructor) argument
87 …Object.defineProperty(constructor.prototype, "foo", { get: function() { "use strict"; checkOkay = …
89 delete constructor.prototype.foo;
93 function checkSetStrict(x, constructor) argument
96 …Object.defineProperty(constructor.prototype, "foo", { set: function() { "use strict"; checkOkay = …
98 delete constructor.prototype.foo;
115 function checkRead(x, constructor) argument
120 function checkWrite(x, constructor) argument
126 function checkReadStrict(x, constructor) argument
132 function checkWriteStrict(x, constructor) argument
152 function checkNumericGet(x, constructor) argument
155 …Object.defineProperty(constructor.prototype, 42, { get: function() { checkOkay = typeof this === '…
157 delete constructor.prototype[42];
161 function checkNumericSet(x, constructor) argument
164 …Object.defineProperty(constructor.prototype, 42, { set: function() { checkOkay = typeof this === '…
166 delete constructor.prototype[42];
170 function checkNumericGetStrict(x, constructor) argument
173 …Object.defineProperty(constructor.prototype, 42, { get: function() { "use strict"; checkOkay = typ…
175 delete constructor.prototype[42];
179 function checkNumericSetStrict(x, constructor) argument
182 …Object.defineProperty(constructor.prototype, 42, { set: function() { "use strict"; checkOkay = typ…
184 delete constructor.prototype[42];
201 function checkNumericRead(x, constructor) argument
206 function checkNumericWrite(x, constructor) argument
212 function checkNumericReadStrict(x, constructor) argument
218 function checkNumericWriteStrict(x, constructor) argument