fcl-passrc: DotExprToName added pekString

git-svn-id: trunk@38478 -
This commit is contained in:
Mattias Gaertner 2018-03-10 10:16:55 +00:00
parent 4cb57d0773
commit b2e21f4c4a

View File

@ -2121,8 +2121,10 @@ begin
begin
Prim:=TPrimitiveExpr(Expr);
case Prim.Kind of
pekIdent: Result:=Result+Prim.Value;
pekSelf: Result:=Result+'Self';
pekIdent,pekString: Result:=Prim.Value;
pekSelf: Result:='Self';
else
EPasResolve.Create('[20180309155400] DotExprToName '+GetObjName(Prim)+' '+ExprKindNames[Prim.Kind]);
end;
end
else if C=TBinaryExpr then