From 1cec086a6034ad546977cae7aeaf4bb876d21970 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Sun, 21 Sep 2025 16:54:36 -0400 Subject: Deprecate `>> x ... = val` form of doctests and rename them to 'debug logs', also add multi-expression support --- src/parse/statements.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/parse/statements.h') diff --git a/src/parse/statements.h b/src/parse/statements.h index fbc1af8f..ebf90c90 100644 --- a/src/parse/statements.h +++ b/src/parse/statements.h @@ -6,7 +6,7 @@ ast_t *parse_assignment(parse_ctx_t *ctx, const char *pos); ast_t *parse_declaration(parse_ctx_t *ctx, const char *pos); -ast_t *parse_doctest(parse_ctx_t *ctx, const char *pos); +ast_t *parse_debug_log(parse_ctx_t *ctx, const char *pos); ast_t *parse_assert(parse_ctx_t *ctx, const char *pos); ast_t *parse_statement(parse_ctx_t *ctx, const char *pos); ast_t *parse_update(parse_ctx_t *ctx, const char *pos); -- cgit v1.2.3