(op string, lhs, rhs Expr)
| 197 | func (*VectorValue) vectorElemNode() {} |
| 198 | |
| 199 | func NewBinaryExpr(op string, lhs, rhs Expr) *BinaryExpr { |
| 200 | return &BinaryExpr{ |
| 201 | Kind: "BinaryExpr", |
| 202 | Op: op, |
| 203 | LHS: lhs, |
| 204 | RHS: rhs, |
| 205 | } |
| 206 | } |
| 207 | |
| 208 | func NewCall(tag string, args []Expr) *CallExpr { |
| 209 | return &CallExpr{ |
no outgoing calls
no test coverage detected