Lines Matching refs:TestLocalDoesNotThrow
63 function TestLocalDoesNotThrow(str) { class
74 TestLocalDoesNotThrow("switch (true) { case true: let x; }");
75 TestLocalDoesNotThrow("switch (true) { default: let x; }");
84 TestLocalDoesNotThrow("switch (true) { case true: const x = 1; }");
85 TestLocalDoesNotThrow("switch (true) { default: const x = 1; }");
103 TestLocalDoesNotThrow("if (true) var x;");
104 TestLocalDoesNotThrow("if (true) {} else var x;");
105 TestLocalDoesNotThrow("do var x; while (false)");
106 TestLocalDoesNotThrow("while (false) var x;");
107 TestLocalDoesNotThrow("label: var x;");
108 TestLocalDoesNotThrow("for (;false;) var x;");
109 TestLocalDoesNotThrow("switch (true) { case true: var x; }");
110 TestLocalDoesNotThrow("switch (true) { default: var x; }");
119 TestLocalDoesNotThrow("switch (true) { case true: class x { }; }");
120 TestLocalDoesNotThrow("switch (true) { default: class x { }; }");
136 TestLocalDoesNotThrow("function arg() {}");
137 TestLocalDoesNotThrow("function f() {} var f;");
138 TestLocalDoesNotThrow("var f; function f() {}");
139 TestLocalDoesNotThrow("function f() {} function f() {}");
173 TestLocalDoesNotThrow("function f() { switch (true) { case true: function g() {} } }");
174 TestLocalDoesNotThrow("function f() { switch (true) { default: function g() {} } }");