Lines Matching refs:Proxy
39 proxyObj = new Proxy(target, handler);
92 const proxy1 = new Proxy({}, {});
93 const proxy2 = new Proxy(proxy1, {});
94 const proxy3 = new Proxy(proxy2, proxy1);
95 const proxy4 = new Proxy(proxy1, proxy2);
96 const proxy5 = new Proxy(proxy3, proxy4);
97 const proxy6 = new Proxy(proxy5, proxy5);
133 const proxy7 = new Proxy([], []);
139 const proxy8 = new Proxy(Date, []);
140 const proxy9 = new Proxy(Date, String);
148 const proxy10 = new Proxy(() => {}, {});
149 const proxy11 = new Proxy(() => {}, {