(id)
| 32712 | } |
| 32713 | |
| 32714 | function assignment(id) { |
| 32715 | return infixr(id, 10, function(left) { |
| 32716 | this.children = [left, expression(9)] |
| 32717 | this.assignment = true |
| 32718 | this.type = 'assign' |
| 32719 | return this |
| 32720 | }) |
| 32721 | } |
| 32722 | |
| 32723 | function advance(id) { |
| 32724 | var next |
no test coverage detected