(id)
| 79397 | } |
| 79398 | |
| 79399 | function assignment(id) { |
| 79400 | return infixr(id, 10, function(left) { |
| 79401 | this.children = [left, expression(9)] |
| 79402 | this.assignment = true |
| 79403 | this.type = 'assign' |
| 79404 | return this |
| 79405 | }) |
| 79406 | } |
| 79407 | |
| 79408 | function advance(id) { |
| 79409 | var next |
no test coverage detected