mirror of
https://gitlab.com/freepascal.org/fpc/pas2js.git
synced 2025-04-05 07:48:59 +02:00
* Introduce InstanceBuffer
This commit is contained in:
parent
86ac1eaf30
commit
511d4cd282
@ -267,9 +267,11 @@ end;
|
||||
|
||||
function TJSObjectBridge.FindGlobalObject(const aName: string): TJOBObjectID;
|
||||
begin
|
||||
// this one is special, it needs to be re-registered every time
|
||||
// these two are special, it needs to be re-registered every time
|
||||
if aName='InstanceMemory' then
|
||||
Exit(RegisterLocalObject(TJSUint8Array.New(getModuleMemoryDataView.buffer)))
|
||||
else if aName='InstanceBuffer' then
|
||||
Exit(RegisterLocalObject(getModuleMemoryDataView.buffer))
|
||||
else
|
||||
begin
|
||||
if not FGlobalNames.hasOwnProperty(aName) then
|
||||
|
Loading…
Reference in New Issue
Block a user