Browse Source

* Remove unused identifiers

Michael Van Canneyt 1 month ago
parent
commit
9331b4be7b
1 changed files with 2 additions and 2 deletions
  1. 2 2
      packages/wasm-utils/src/pas2js.storagebridge.worker.pas

+ 2 - 2
packages/wasm-utils/src/pas2js.storagebridge.worker.pas

@@ -6,7 +6,7 @@ unit pas2js.storagebridge.worker;
 interface
 
 uses
-  types, js, weborworker, webworker, rtl.WorkerCommands, pas2js.storagebridge.shared;
+  types, js, webworker, rtl.WorkerCommands, pas2js.storagebridge.shared;
 
 Type
   TMainThreadCallFunc = reference to function: Integer;
@@ -41,7 +41,7 @@ Type
 
 implementation
 
-function Array_prototype_slice(val : JSValue) : TJSValueDynArray; external name 'Array.prototype.slice.call';
+// function Array_prototype_slice(val : JSValue) : TJSValueDynArray; external name 'Array.prototype.slice.call';
 
 function TWorkerStorageBridge.DoMainThreadBlockingCall(const aFuncName: String; aArgs: array of JSValue): Integer;