(astAssignID uint64)
| 1425 | } |
| 1426 | |
| 1427 | func (d *decoder) astAssign(astAssignID uint64) (out *ast.Assign) { |
| 1428 | d.build(d.content.Instances.AstAssign, &d.inst.ASTAssign, astAssignID, &out, |
| 1429 | func(p *ASTAssign, s *ast.Assign) { |
| 1430 | s.LHS = d.astNode(p.Lhs) |
| 1431 | s.Operator = d.str(p.Operator) |
| 1432 | s.RHS = d.astNode(p.Rhs) |
| 1433 | }) |
| 1434 | return |
| 1435 | } |
| 1436 | |
| 1437 | func (d *decoder) astBinaryOp(astBinaryOpID uint64) (out *ast.BinaryOp) { |
| 1438 | d.build(d.content.Instances.AstBinaryOp, &d.inst.ASTBinaryOp, astBinaryOpID, &out, |
no test coverage detected