(n ast.Node, tag string, args []Expr)
| 236 | } |
| 237 | |
| 238 | func NewCall(n ast.Node, tag string, args []Expr) *CallExpr { |
| 239 | return &CallExpr{ |
| 240 | Node: n, |
| 241 | Tag: tag, |
| 242 | Args: args, |
| 243 | } |
| 244 | } |
| 245 | |
| 246 | func NewStructuredError(n ast.Node, message string, on Expr) Expr { |
| 247 | rec := &RecordExpr{ |
no outgoing calls
no test coverage detected