* fix #39849: it's an error when the file (or string) parameter of a Read*/Write* is followed by a ":"

+ added test
This commit is contained in:
Sven/Sarah Barth 2022-07-29 17:34:55 +02:00
parent e1312deafe
commit c122e16beb
2 changed files with 23 additions and 0 deletions

View File

@ -1329,6 +1329,15 @@ implementation
filepara := nil;
end;
if assigned(filepara) and
assigned(filepara.right) and
(cpf_is_colon_para in tcallparanode(filepara.right).callparaflags) then
begin
CGMessagePos(filepara.fileinfo,parser_e_illegal_colon_qualifier);
{ for recovery we can simply continue, because the compiler will
simply treat the next parameters as normal parameters }
end;
{ create a blocknode in which the successive write/read statements will be }
{ put, since they belong together. Also create a dummy statement already to }
{ make inserting of additional statements easier }

14
tests/webtbf/tw39849.pp Normal file
View File

@ -0,0 +1,14 @@
{ %FAIL }
PROGRAM tw39849;
{$APPTYPE CONSOLE}
VAR
F: TEXT;
BEGIN
ASSIGN(F, 'doublepoint.txt');
REWRITE(F);
WRITELN(F, 'Hello'); { ',' is legal - compiler just do its job }
WRITELN(F: 'Hello'); { ':' is not legal - compiler should emit an error, but 3.2.2 fail to }
CLOSE(F);
END.