(tag string, args []Expr)
| 206 | } |
| 207 | |
| 208 | func NewCall(tag string, args []Expr) *CallExpr { |
| 209 | return &CallExpr{ |
| 210 | Kind: "CallExpr", |
| 211 | Tag: tag, |
| 212 | Args: args, |
| 213 | } |
| 214 | } |
| 215 | |
| 216 | func NewThis(path []string) *ThisExpr { |
| 217 | return &ThisExpr{"ThisExpr", path} |
no outgoing calls
no test coverage detected