Move write procedures to the common module

This commit is contained in:
2025-08-14 14:06:57 +03:00
parent 5146ea61b9
commit cec020ea92
6 changed files with 101 additions and 118 deletions

View File

@@ -271,7 +271,7 @@ end;
proc parse_array_type(parser: ^Parser) -> ^AstTypeExpression;
var
token: LexerToken;
buffer: [20]CHAR;
buffer: [20]Char;
result: ^AstTypeExpression;
begin
NEW(result);