| 271 | } |
| 272 | |
| 273 | static struct splice_script_error *new_error(const tal_t *ctx, |
| 274 | enum splice_script_error_type type, |
| 275 | struct token *token, |
| 276 | const char *phase) |
| 277 | { |
| 278 | return new_error_offset(ctx, type, token, phase, 0); |
| 279 | } |
| 280 | |
| 281 | static struct splice_script_error *new_error_msg(const tal_t *ctx, |
| 282 | enum splice_script_error_type type, |
no test coverage detected