+ added TWasmObjInput class. To be used in the WASM internal linker. Not doing anything, yet.

This commit is contained in:
Nikolay Nikolov 2023-11-15 01:39:39 +02:00
parent d32deedb4e
commit bc727f9fb2

View File

@ -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
****************************************************************************}