()
| 1128 | }; |
| 1129 | |
| 1130 | function maybe_conditional() { |
| 1131 | var expr = expr_ops(); |
| 1132 | if (is("operator", "?")) { |
| 1133 | next(); |
| 1134 | var yes = expression(false); |
| 1135 | expect(":"); |
| 1136 | return as("conditional", expr, yes, expression(false)); |
| 1137 | } |
| 1138 | return expr; |
| 1139 | }; |
| 1140 | |
| 1141 | function is_assignable(expr) { |
| 1142 | switch (expr[0]) { |
no test coverage detected
searching dependent graphs…