Lines Matching full:handler
104 let handler: ProxyHandler<C> = {};
105 if (handler.apply) handler.apply(c, c, []);
106 if (handler.construct) handler.construct(c, [], () => {});
107 if (handler.defineProperty) handler.defineProperty(c, "prop", {});
108 if (handler.deleteProperty) handler.deleteProperty(c, "prop");
109 if (handler.get) handler.get(c, "prop", {});
110 if (handler.getOwnPropertyDescriptor) handler.getOwnPropertyDescriptor(c, "prop");
111 if (handler.getPrototypeOf) handler.getPrototypeOf(c);
112 if (handler.has) handler.has(c, "prop");
113 if (handler.isExtensible) handler.isExtensible(c);
114 if (handler.ownKeys) handler.ownKeys(c);
115 if (handler.preventExtensions) handler.preventExtensions(c);
116 if (handler.set) handler.set(c, "prop", 1, c);
117 if (handler.setPrototypeOf) handler.setPrototypeOf(c, null);