W7 done done

This commit is contained in:
root
2026-06-15 10:53:36 +00:00
parent f5637bb587
commit 04745f39a8
35 changed files with 323 additions and 60 deletions
+4 -4
View File
@@ -3,18 +3,18 @@ bool unit_compile(String path = "")
:params
path : optional UCE unit path. If empty, recompiles the current executing unit.
return value : `true` when the unit was compiled and loaded successfully
return value : `true` when the host compiler accepted and compiled the unit
:see
>runtime
unit_info
units_list
unit_load
unit_call
:content
Triggers a manual recompile of a UCE compilation unit.
Triggers a manual recompile of a UCE compilation unit through the host membrane.
If `path` is relative, it is resolved relative to the current executing unit. Successful manual compiles also refresh the in-memory metadata for that unit.
If `path` is relative, it is resolved by the host unit resolver. The function returns whether compilation succeeded; it does not return or expose a native `SharedUnit*` to wasm units.
Related: