Lines Matching defs:target
7 var target = {
10 target.__proto__ = {
14 ownKeys: function(target) {
19 var proxy = new Proxy(target, handler);
26 // Step 6: Fall through to target.[[OwnPropertyKeys]] if the trap is undefined.
31 handler.ownKeys = function(target) { throw 1; };
37 handler.ownKeys = function(target) { return keys; };
70 Object.defineProperty(target, "nonconf", {value: 1, configurable: false});
76 // Step 19a: The trap result must all keys of a non-extensible target.
77 Object.preventExtensions(target);
82 // Step 20: The trap result must not add keys to a non-extensible target.