mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-12 06:06:17 +02:00
* Constructor
This commit is contained in:
parent
6a7524418a
commit
c4165a67a7
@ -322,6 +322,7 @@ type
|
|||||||
constructor JOBCreate(Args : Array of const);
|
constructor JOBCreate(Args : Array of const);
|
||||||
class function JSClassName : UnicodeString; virtual;
|
class function JSClassName : UnicodeString; virtual;
|
||||||
class function Cast(const Intf: IJSObject): IJSObject; overload;
|
class function Cast(const Intf: IJSObject): IJSObject; overload;
|
||||||
|
constructor Create; virtual;
|
||||||
destructor Destroy; override;
|
destructor Destroy; override;
|
||||||
property JOBObjectID: TJOBObjectID read FJOBObjectID;
|
property JOBObjectID: TJOBObjectID read FJOBObjectID;
|
||||||
property JOBObjectIDOwner: boolean read FJOBObjectIDOwner write FJOBObjectIDOwner;
|
property JOBObjectIDOwner: boolean read FJOBObjectIDOwner write FJOBObjectIDOwner;
|
||||||
@ -2962,7 +2963,11 @@ begin
|
|||||||
Result:='Object';
|
Result:='Object';
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
constructor TJSObject.Create;
|
||||||
|
|
||||||
|
begin
|
||||||
|
JOBCreate([]);
|
||||||
|
end;
|
||||||
|
|
||||||
destructor TJSObject.Destroy;
|
destructor TJSObject.Destroy;
|
||||||
begin
|
begin
|
||||||
|
Loading…
Reference in New Issue
Block a user