mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-21 20:29:32 +02:00
* tprocdef.gettypename implemented
This commit is contained in:
parent
8d6f26bf4f
commit
59b98f4047
@ -518,6 +518,7 @@ interface
|
||||
procedure derefimpl;override;
|
||||
function getsymtable(t:tgetsymtable):tsymtable;override;
|
||||
function haspara:boolean;
|
||||
function gettypename : string;override;
|
||||
function mangledname : string;
|
||||
procedure setmangledname(const s : string);
|
||||
procedure load_references(ppufile:tcompilerppufile;locals:boolean);
|
||||
@ -3815,6 +3816,12 @@ implementation
|
||||
end;
|
||||
|
||||
|
||||
function tprocdef.gettypename : string;
|
||||
begin
|
||||
gettypename := FullProcName+';'+ProcCallOptionStr[proccalloption];
|
||||
end;
|
||||
|
||||
|
||||
function tprocdef.mangledname : string;
|
||||
var
|
||||
s : string;
|
||||
@ -5546,7 +5553,10 @@ implementation
|
||||
end.
|
||||
{
|
||||
$Log$
|
||||
Revision 1.118 2002-12-27 15:23:09 peter
|
||||
Revision 1.119 2002-12-29 18:25:59 peter
|
||||
* tprocdef.gettypename implemented
|
||||
|
||||
Revision 1.118 2002/12/27 15:23:09 peter
|
||||
* write class methods in fullname
|
||||
|
||||
Revision 1.117 2002/12/15 19:34:31 florian
|
||||
|
Loading…
Reference in New Issue
Block a user