mirror of
https://gitlab.com/freepascal.org/fpc/pas2js.git
synced 2025-04-05 18:17:45 +02:00
* Execute command
This commit is contained in:
parent
f98aa26b63
commit
b3c3e36b75
@ -47,6 +47,9 @@ Const
|
||||
cmdSpawn = 'spawn';
|
||||
cmdLoad = 'load';
|
||||
cmdRun = 'run';
|
||||
cmdExecute = 'execute';
|
||||
|
||||
channelConsole = 'console_output';
|
||||
|
||||
DefaultThreadWorker = 'pas2jsthreadworker.js';
|
||||
DefaultThreadCount = 2;
|
||||
@ -220,6 +223,15 @@ Type
|
||||
Args : Integer;
|
||||
end;
|
||||
|
||||
// Sent my main to thread controller worker: load and start a webassembly
|
||||
TWorkerExecuteCommand = class external name 'Object' (TWorkerCommand)
|
||||
public
|
||||
Url : String;
|
||||
ExecuteFunc : string;
|
||||
Env : TJSObject;
|
||||
end;
|
||||
|
||||
|
||||
{ TWorkerRunCommandHelper }
|
||||
|
||||
TWorkerRunCommandHelper = class helper for TWorkerRunCommand
|
||||
|
Loading…
Reference in New Issue
Block a user