Home | History | Annotate | Download | only in harmony

Lines Matching refs:construct

33 function TestWithProxies(test, construct, handler) {
34 test(construct, handler, Proxy.create)
35 test(construct, handler, function(h) {
43 function TestSet(construct, fix) {
44 TestWithProxies(TestSet2, construct, fix)
47 function TestSet2(construct, fix, create) {
54 var s = new construct();
80 function TestMap(construct, fix) {
81 TestWithProxies(TestMap2, construct, fix)
84 function TestMap2(construct, fix, create) {
91 var m = new construct();