Explorar el Código

* override twasmnodeutils.InsertObjectInfo

Nikolay Nikolov hace 3 años
padre
commit
459bb0fa18
Se han modificado 1 ficheros con 9 adiciones y 0 borrados
  1. 9 0
      compiler/wasm32/nwasmutil.pas

+ 9 - 0
compiler/wasm32/nwasmutil.pas

@@ -33,10 +33,19 @@ interface
     { twasmnodeutils }
 
     twasmnodeutils = class(tnodeutils)
+    public
+      class procedure InsertObjectInfo; override;
     end;
 
 implementation
 
+  { twasmnodeutils }
+
+  class procedure twasmnodeutils.InsertObjectInfo;
+    begin
+      inherited;
+    end;
+
 begin
   cnodeutils:=twasmnodeutils;
 end.