* also parse postfix operators after parsing a _STRING token (required for class functions on type helpers for String)

+ added tests

git-svn-id: trunk@39399 -
This commit is contained in:
svenbarth 2018-07-06 15:57:11 +00:00
parent 664724fb82
commit 441fc2fab6
5 changed files with 58 additions and 1 deletions

3
.gitattributes vendored
View File

@ -13759,6 +13759,9 @@ tests/test/tthlp22.pp svneol=native#text/pascal
tests/test/tthlp23.pp svneol=native#text/pascal
tests/test/tthlp24.pp svneol=native#text/pascal
tests/test/tthlp25.pp svneol=native#text/pascal
tests/test/tthlp26a.pp -text svneol=native#text/pascal
tests/test/tthlp26b.pp -text svneol=native#text/pascal
tests/test/tthlp26c.pp -text svneol=native#text/pascal
tests/test/tthlp3.pp svneol=native#text/pascal
tests/test/tthlp4.pp svneol=native#text/pascal
tests/test/tthlp5.pp svneol=native#text/pascal

View File

@ -3698,7 +3698,15 @@ implementation
postfixoperators(p1,again,getaddr);
end
else
p1:=ctypenode.create(hdef);
begin
p1:=ctypenode.create(hdef);
if token=_POINT then
begin
again:=true;
{ handle type helpers here }
postfixoperators(p1,again,getaddr);
end;
end;
end;
_FILE :

15
tests/test/tthlp26a.pp Normal file
View File

@ -0,0 +1,15 @@
{ test that the correct type helper is used for String = ShortString }
program tthlp26a;
{$mode objfpc}
{$modeswitch typehelpers}
uses
uthlp;
begin
if String.TestClass <> 1 then
Halt(1);
Writeln('ok');
end.

15
tests/test/tthlp26b.pp Normal file
View File

@ -0,0 +1,15 @@
{ test that the correct type helper is used for String = AnsiString }
program tthlp26b;
{$mode objfpc}{$H+}
{$modeswitch typehelpers}
uses
uthlp;
begin
if String.TestClass <> 2 then
Halt(1);
Writeln('ok');
end.

16
tests/test/tthlp26c.pp Normal file
View File

@ -0,0 +1,16 @@
{ test that the correct type helper is used for String = UnicodeString }
program tthlp26c;
{$mode objfpc}{$H+}
{$modeswitch unicodestrings}
{$modeswitch typehelpers}
uses
uthlp;
begin
if String.TestClass <> 4 then
Halt(1);
Writeln('ok');
end.