(type)
| 250 | if (type == "[") return cont(pushlex("]"), expression, expect("]"), poplex, maybeoperator); |
| 251 | } |
| 252 | function maybelabel(type) { |
| 253 | if (type == ":") return cont(poplex, statement); |
| 254 | return pass(maybeoperator, expect(";"), poplex); |
| 255 | } |
| 256 | function property(type) { |
| 257 | if (type == "variable") {cx.marked = "property"; return cont();} |
| 258 | } |