Read an unterminated comment entirely

This commit is contained in:
Eugen Wissner 2025-02-20 23:07:35 +01:00
parent 7f4a026cbc
commit ff9169a98c
Signed by: belka
GPG Key ID: A27FDC1E8EE902C0

View File

@ -351,22 +351,26 @@ end
proc lex_comment(source_code: ^SourceCode, token_content: ^String) -> Bool; proc lex_comment(source_code: ^SourceCode, token_content: ^String) -> Bool;
var var
content_length: Word content_length: Word
trailing: Word
begin begin
content_length := 0u content_length := 0u
token_content^ := source_code^.text token_content^ := source_code^.text
trailing := 0u
while source_code^.text.length > 1u do while source_code^.text.length > 0u and trailing < 2u do
if source_code^.text[1u] = '*' and source_code^.text[2u] = ')' then if source_code^.text[1u] = '*' then
source_code^ := advance_source(source_code^, 2u) content_length := content_length + trailing
token_content^ := substring(token_content^, 0u, content_length) trailing := 1u
elsif source_code^.text[1u] = ')' and trailing = 1u then
return true trailing := 2u
else
content_length := content_length + trailing + 1u
trailing := 0u
end end
content_length := content_length + 1u source_code^ := advance_source(source_code^, 1u)
source_code^ := advance_source(source_code^, 1u)
end end
return false return trailing = 2u
end end
proc lex_character(input: ^Char, current_token: ^Token) -> ^Char; proc lex_character(input: ^Char, current_token: ^Token) -> ^Char;