Lines Matching full:cc
38 map.set("test has:", set.length == 2 && set.has("aa") && set.has("bb") && !set.has("cc"));
40 set.add("cc");
42 …set("test getFirstKey and getLastKey:", set.getFirstValue() == "aa" && set.getLastValue() == "cc");
45 set.getLowerValue("aa") == undefined && set.getHigherValue("bb") == "cc" &&
46 set.getHigherValue("cc") == undefined);
51 iteratorSetValues.next().value == "cc" && iteratorSetValues.next().value == undefined);
52 // test entries: [cc, cc], undefined
59 // test forof: aa, bb, cc
60 let arr = ["aa", "bb", "cc"];
92 map.set("test clear:", set.length == 0 && !set.has("cc") && set.isEmpty());
161 … map.set("test has:", proxy.length == 2 && proxy.has("aa") && proxy.has("bb") && !proxy.has("cc"));
163 proxy.add("cc");
165 …"test getFirstKey and getLastKey:", proxy.getFirstValue() == "aa" && proxy.getLastValue() == "cc");
168 proxy.getLowerValue("aa") == undefined && proxy.getHigherValue("bb") == "cc" &&
169 proxy.getHigherValue("cc") == undefined);
174 … iteratorSetValues1.next().value == "cc" && iteratorSetValues1.next().value == undefined);
175 // test entries: [cc, cc], undefined
182 // test forof: aa, bb, cc
183 let arr1 = ["aa", "bb", "cc"];
215 map.set("test clear:", proxy.length == 0 && !proxy.has("cc") && proxy.isEmpty());