• Home
  • Raw
  • Download

Lines Matching refs:TestConflict

107 function TestConflict(def0, def1) {  class
122 TestConflict("const x", "var x");
123 TestConflict("const x = 0", "var x");
124 TestConflict("const x", "var x = 0");
125 TestConflict("const x = 0", "var x = 0");
127 TestConflict("var x", "const x");
128 TestConflict("var x = 0", "const x");
129 TestConflict("var x", "const x = 0");
130 TestConflict("var x = 0", "const x = 0");
132 TestConflict("const x = undefined", "var x");
133 TestConflict("const x", "var x = undefined");
134 TestConflict("const x = undefined", "var x = undefined");
136 TestConflict("var x = undefined", "const x");
137 TestConflict("var x", "const x = undefined");
138 TestConflict("var x = undefined", "const x = undefined");
140 TestConflict("const x = undefined", "var x = 0");
141 TestConflict("const x = 0", "var x = undefined");
143 TestConflict("var x = undefined", "const x = 0");
144 TestConflict("var x = 0", "const x = undefined");
146 TestConflict("const x", "function x() { }");
147 TestConflict("const x = 0", "function x() { }");
148 TestConflict("const x = undefined", "function x() { }");
150 TestConflict("function x() { }", "const x");
151 TestConflict("function x() { }", "const x = 0");
152 TestConflict("function x() { }", "const x = undefined");
154 TestConflict("const x, y", "var x");
155 TestConflict("const x, y", "var y");
156 TestConflict("const x = 0, y", "var x");
157 TestConflict("const x = 0, y", "var y");
158 TestConflict("const x, y = 0", "var x");
159 TestConflict("const x, y = 0", "var y");
160 TestConflict("const x = 0, y = 0", "var x");
161 TestConflict("const x = 0, y = 0", "var y");
163 TestConflict("var x", "const x, y");
164 TestConflict("var y", "const x, y");
165 TestConflict("var x", "const x = 0, y");
166 TestConflict("var y", "const x = 0, y");
167 TestConflict("var x", "const x, y = 0");
168 TestConflict("var y", "const x, y = 0");
169 TestConflict("var x", "const x = 0, y = 0");
170 TestConflict("var y", "const x = 0, y = 0");
174 TestConflict("var x, y", "const x, y");
178 TestConflict("const x", "const x");
179 TestConflict("const x = 0", "const x");
180 TestConflict("const x", "const x = 0");
181 TestConflict("const x = 0", "const x = 0");
183 TestConflict("const x = undefined", "const x");
184 TestConflict("const x", "const x = undefined");
185 TestConflict("const x = undefined", "const x = undefined");
187 TestConflict("const x = undefined", "const x = 0");
188 TestConflict("const x = 0", "const x = undefined");
190 TestConflict("const x, y", "const x");
191 TestConflict("const x, y", "const y");
192 TestConflict("const x = 0, y", "const x");
193 TestConflict("const x = 0, y", "const y");
194 TestConflict("const x, y = 0", "const x");
195 TestConflict("const x, y = 0", "const y");
196 TestConflict("const x = 0, y = 0", "const x");
197 TestConflict("const x = 0, y = 0", "const y");
199 TestConflict("const x", "const x, y");
200 TestConflict("const y", "const x, y");
201 TestConflict("const x", "const x = 0, y");
202 TestConflict("const y", "const x = 0, y");
203 TestConflict("const x", "const x, y = 0");
204 TestConflict("const y", "const x, y = 0");
205 TestConflict("const x", "const x = 0, y = 0");
206 TestConflict("const y", "const x = 0, y = 0");
210 TestConflict("const x, y", "const x, y");