Home | History | Annotate | Download | only in es6

Lines Matching refs:Has

50   has(target, property) { return true },
57 has(target, property) { return true },
85 has: function(t, k) { return k == "0" || k == "a" },
92 has: function(t, k) { return k == "null" || k == "a" },
158 // The [[Has]] trap has no influence on which are enumerable properties are
160 handler.has = function() { return true };
182 // for-in walks the prototype chain for the [[Has]] / Enumerable check.
185 // [[Has]] is not used in for-in.
186 handler.has = function() { return false };