summaryrefslogtreecommitdiff
path: root/tnslc/parse/ast.tnsl
diff options
context:
space:
mode:
authorKai Gunger <kgunger12@gmail.com>2026-07-08 02:30:07 -0400
committerKai Gunger <kgunger12@gmail.com>2026-07-08 02:30:07 -0400
commitb45c3e6a23f659d62e02ad420f7cecd86ff07df5 (patch)
treeea213f812fc9e580b9347019fe98fa71b5bb5981 /tnslc/parse/ast.tnsl
parentf7ececd879b731194f64123f746ac49b7781fc68 (diff)
[tnslc] first bootstrap attempt pending
Diffstat (limited to 'tnslc/parse/ast.tnsl')
-rw-r--r--tnslc/parse/ast.tnsl5
1 files changed, 0 insertions, 5 deletions
diff --git a/tnslc/parse/ast.tnsl b/tnslc/parse/ast.tnsl
index fea6421..b517e41 100644
--- a/tnslc/parse/ast.tnsl
+++ b/tnslc/parse/ast.tnsl
@@ -919,8 +919,6 @@ int errors_shown = 0
uint8 end = _get_closing_delim(first`.data`)
first` = produce_next_token(fin, first`)
- int ln = first`.line
-
/; loop (bool run = true; run == true && first`._type !== TTYPE_ERR && first`.data` !== end)
/; if (_advance_check(fin, first, "asm\0") == true)
_ast_asm(fin, ~list, first)
@@ -951,8 +949,6 @@ int errors_shown = 0
mod`.add_child(~list)
- ln = first`.line
-
/; if (first`._type !== TTYPE_DELIM || first`.data` !== end)
_ast_print_err(fin, first, "Expected closing at end of statement list\0")
;; else
@@ -961,7 +957,6 @@ int errors_shown = 0
first` = tmp
;/
- return ln
;/