(init)
| 939 | }; |
| 940 | |
| 941 | function regular_for(init) { |
| 942 | expect(";"); |
| 943 | var test = is("punc", ";") ? null : expression(); |
| 944 | expect(";"); |
| 945 | var step = is("punc", ")") ? null : expression(); |
| 946 | expect(")"); |
| 947 | return as("for", init, test, step, in_loop(statement)); |
| 948 | }; |
| 949 | |
| 950 | function for_in(init) { |
| 951 | var lhs = init[0] == "var" ? as("name", init[1][0]) : init; |