Lines Matching full:cc
32 map.set("test has:", set.length == 2 && set.has("aa") && set.has("bb") && !set.has("cc"));
34 set.add("cc");
39 iteratorSetValues.next().value == "cc" && iteratorSetValues.next().value == undefined);
40 // test entries: [cc, cc], undefined
47 // test forof: aa, bb, cc
48 let arr = ["aa", "bb", "cc"];
73 map.set("test clear:", set.length == 0 && !set.has("cc") && set.isEmpty());
89 … map.set("test has:", proxy.length == 2 && proxy.has("aa") && proxy.has("bb") && !proxy.has("cc"));
91 proxy.add("cc");
96 … iteratorSetValues1.next().value == "cc" && iteratorSetValues1.next().value == undefined);
97 // test entries: [cc, cc], undefined
104 // test forof: aa, bb, cc
105 let arr1 = ["aa", "bb", "cc"];
152 map.set("test clear:", proxy.length == 0 && !proxy.has("cc") && proxy.isEmpty());