(c *CallCommon)
| 1606 | } |
| 1607 | |
| 1608 | func (r *reader) setCall(c *CallCommon) { |
| 1609 | c.pos = r.pos() |
| 1610 | r.setCallFunc(c) |
| 1611 | c.Args = r.setCallArgs(c.Args) |
| 1612 | } |
| 1613 | |
| 1614 | // assignOp emits to fn code to perform loc <op>= val. |
| 1615 | func (b *builder) assignOp(loc lvalue, val Value, op Operator, pos Pos) { |
no test coverage detected