Home | History | Annotate | Download | only in harmony

Lines Matching full:construct

33 function TestWithProxies(test, construct, handler) {
34 test(construct, handler, function(h) { return new Proxy({}, h) })
36 // test(construct, handler, function(h) {
44 function TestSet(construct, fix) {
45 TestWithProxies(TestSet2, construct, fix)
48 function TestSet2(construct, fix, create) {
55 var s = new construct();
81 function TestMap(construct, fix) {
82 TestWithProxies(TestMap2, construct, fix)
85 function TestMap2(construct, fix, create) {
92 var m = new construct();