(type, value)
| 609 | return cont(maybeoperatorComma, forspec2); |
| 610 | } |
| 611 | function forspec2(type, value) { |
| 612 | if (type == ";") return cont(forspec3); |
| 613 | if (value == "in" || value == "of") { cx.marked = "keyword"; return cont(expression); } |
| 614 | return pass(expression, expect(";"), forspec3); |
| 615 | } |
| 616 | function forspec3(type) { |
| 617 | if (type != ")") cont(expression); |
| 618 | } |