mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-13 11:24:14 +02:00
+ added TWasmObjInput class. To be used in the WASM internal linker. Not doing anything, yet.
This commit is contained in:
parent
d32deedb4e
commit
bc727f9fb2
@ -180,6 +180,13 @@ interface
|
||||
destructor destroy;override;
|
||||
end;
|
||||
|
||||
{ TWasmObjInput }
|
||||
|
||||
TWasmObjInput = class(TObjInput)
|
||||
public
|
||||
constructor create;override;
|
||||
end;
|
||||
|
||||
{ TWasmAssembler }
|
||||
|
||||
TWasmAssembler = class(tinternalassembler)
|
||||
@ -2082,6 +2089,16 @@ implementation
|
||||
inherited destroy;
|
||||
end;
|
||||
|
||||
{****************************************************************************
|
||||
TWasmObjInput
|
||||
****************************************************************************}
|
||||
|
||||
constructor TWasmObjInput.create;
|
||||
begin
|
||||
inherited create;
|
||||
cobjdata:=TWasmObjData;
|
||||
end;
|
||||
|
||||
{****************************************************************************
|
||||
TWasmAssembler
|
||||
****************************************************************************}
|
||||
|
Loading…
Reference in New Issue
Block a user