(n ast.Node, path []string)
| 215 | func (*FuncRef) exprNode() {} |
| 216 | |
| 217 | func NewThis(n ast.Node, path []string) *ThisExpr { |
| 218 | return &ThisExpr{Node: n, Path: path} |
| 219 | } |
| 220 | |
| 221 | func NewBinaryExpr(n ast.Node, op string, lhs, rhs Expr) *BinaryExpr { |
| 222 | return &BinaryExpr{ |
no outgoing calls
no test coverage detected