mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-12 07:26:24 +02:00
fcl-passrc: DotExprToName added pekString
git-svn-id: trunk@38478 -
This commit is contained in:
parent
4cb57d0773
commit
b2e21f4c4a
@ -2121,8 +2121,10 @@ begin
|
|||||||
begin
|
begin
|
||||||
Prim:=TPrimitiveExpr(Expr);
|
Prim:=TPrimitiveExpr(Expr);
|
||||||
case Prim.Kind of
|
case Prim.Kind of
|
||||||
pekIdent: Result:=Result+Prim.Value;
|
pekIdent,pekString: Result:=Prim.Value;
|
||||||
pekSelf: Result:=Result+'Self';
|
pekSelf: Result:='Self';
|
||||||
|
else
|
||||||
|
EPasResolve.Create('[20180309155400] DotExprToName '+GetObjName(Prim)+' '+ExprKindNames[Prim.Kind]);
|
||||||
end;
|
end;
|
||||||
end
|
end
|
||||||
else if C=TBinaryExpr then
|
else if C=TBinaryExpr then
|
||||||
|
Loading…
Reference in New Issue
Block a user