Lines Matching refs:Proxy
18 * @tc.desc:test Proxy
26 let addProxy = new Proxy(add, {
38 let obj = new Proxy(EmployeeEntity,{});
46 const a3 = new Proxy(a1, a2);
54 const v5 = new Proxy(v0, {});
61 const proxy = new Proxy(arr2, handler);
71 var P = new Proxy(Target, handler1);
78 const v5 = new Proxy({}, {});
86 const v6 = new Proxy(v3, o3);
94 let pro1 = new Proxy(arr1, {});
102 const v3 = new Proxy(v0, o1);
105 const v9 = new Proxy(RegExp, v3);
115 let v4 = new Proxy(Uint32Array,Reflect);
126 var object = new Proxy({}, proxyHandler);
137 let v11 = new Proxy(C1);