()
| 310 | } |
| 311 | |
| 312 | func (p *parser) index() exprDesc { |
| 313 | p.next() // skip '[' |
| 314 | e := p.function.ExpressionToValue(p.expression()) |
| 315 | p.checkNext(']') |
| 316 | return e |
| 317 | } |
| 318 | |
| 319 | func (p *parser) assignment(t *assignmentTarget, variableCount int) { |
| 320 | if p.checkCondition(t.isVariable(), "syntax error"); p.testNext(',') { |
no test coverage detected