Răsfoiți Sursa

* Remove unused identifiers

Michael Van Canneyt 1 lună în urmă
părinte
comite
9331b4be7b
1 a modificat fișierele cu 2 adăugiri și 2 ștergeri
  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;