Lines Matching refs:true
50 if (true) {
67 TestLocalThrows("if (true) let x;", SyntaxError);
68 TestLocalThrows("if (true) {} else let x;", SyntaxError);
73 TestLocalThrows("switch (true) { case true: let x; }", SyntaxError);
74 TestLocalThrows("switch (true) { default: let x; }", SyntaxError);
77 TestLocalThrows("if (true) const x = 1;", SyntaxError);
78 TestLocalThrows("if (true) {} else const x = 1;", SyntaxError);
83 TestLocalThrows("switch (true) { case true: const x = 1; }", SyntaxError);
84 TestLocalThrows("switch (true) { default: const x = 1; }", SyntaxError);
92 TestLocalThrows("if (true) const x;", SyntaxError);
93 TestLocalThrows("if (true) {} else const x;", SyntaxError);
98 TestLocalThrows("switch (true) { case true: const x; }", SyntaxError);
99 TestLocalThrows("switch (true) { default: const x; }", SyntaxError);
102 TestLocalDoesNotThrow("if (true) var x;");
103 TestLocalDoesNotThrow("if (true) {} else var x;");
108 TestLocalDoesNotThrow("switch (true) { case true: var x; }");
109 TestLocalDoesNotThrow("switch (true) { default: var x; }");
130 TestLocalThrows("function f() { if (true) function g() {}", SyntaxError);
131 TestLocalThrows("function f() { if (true) {} else function g() {}", SyntaxError);
136 TestLocalThrows("function f() { switch (true) { case true: function g() {} }", SyntaxError);
137 TestLocalThrows("function f() { switch (true) { default: function g() {} }", SyntaxError);