Lines Matching refs:undefined
131 TestConflict("const x = undefined", "var x");
132 TestConflict("const x", "var x = undefined");
133 TestConflict("const x = undefined", "var x = undefined");
135 TestConflict("var x = undefined", "const x");
136 TestConflict("var x", "const x = undefined");
137 TestConflict("var x = undefined", "const x = undefined");
139 TestConflict("const x = undefined", "var x = 0");
140 TestConflict("const x = 0", "var x = undefined");
142 TestConflict("var x = undefined", "const x = 0");
143 TestConflict("var x = 0", "const x = undefined");
147 TestConflict("const x = undefined", "function x() { }");
151 TestConflict("function x() { }", "const x = undefined");
182 TestConflict("const x = undefined", "const x");
183 TestConflict("const x", "const x = undefined");
184 TestConflict("const x = undefined", "const x = undefined");
186 TestConflict("const x = undefined", "const x = 0");
187 TestConflict("const x = 0", "const x = undefined");
220 TestAll(undefined, "with ({x:42}) { const x; }", "x");