(commas)
| 1161 | }; |
| 1162 | |
| 1163 | function expression(commas) { |
| 1164 | if (arguments.length == 0) |
| 1165 | commas = true; |
| 1166 | var expr = maybe_assign(); |
| 1167 | if (commas && is("punc", ",")) { |
| 1168 | next(); |
| 1169 | return as("seq", expr, expression()); |
| 1170 | } |
| 1171 | return expr; |
| 1172 | }; |
| 1173 | |
| 1174 | function in_loop(cont) { |
| 1175 | try { |
no test coverage detected
searching dependent graphs…