Lines Matching defs:flags
16 assert (r.flags === 'gimuy');
20 Object.getOwnPropertyDescriptor(RegExp.prototype, 'flags').get.call(42);
33 Object.defineProperty(o, 'flags', Object.getOwnPropertyDescriptor(RegExp.prototype, 'flags'));
34 assert(o.flags === "guy");
39 o.flags
72 Object.defineProperty (o, 'flags', { 'get' : function () {throw "abrupt flags get"; } });
77 assert (e === "abrupt flags get");
80 var o = {source: "str", flags: {toString: function() {throw "abrupt flags toString";}}};
85 assert (e === "abrupt flags toString");