(astBinaryOpID uint64)
| 1435 | } |
| 1436 | |
| 1437 | func (d *decoder) astBinaryOp(astBinaryOpID uint64) (out *ast.BinaryOp) { |
| 1438 | d.build(d.content.Instances.AstBinaryOp, &d.inst.ASTBinaryOp, astBinaryOpID, &out, |
| 1439 | func(p *ASTBinaryOp, s *ast.BinaryOp) { |
| 1440 | s.LHS = d.astNode(p.Lhs) |
| 1441 | s.Operator = d.str(p.Operator) |
| 1442 | s.RHS = d.astNode(p.Rhs) |
| 1443 | }) |
| 1444 | return |
| 1445 | } |
| 1446 | |
| 1447 | func (d *decoder) astBool(astBoolID uint64) (out *ast.Bool) { |
| 1448 | d.build(d.content.Instances.AstBool, &d.inst.ASTBool, astBoolID, &out, |