diff options
author | Ernesto Lanchares <elancha98@proton.me> | 2025-03-24 21:18:40 +0000 |
---|---|---|
committer | Lorenzo Torres <torres@sideros.org> | 2025-03-24 22:38:12 +0100 |
commit | 09691ec4d93cda6ab31d28d6e478257209fe625e (patch) | |
tree | b807d47ad7cf434a429b38804fadcbcc3b0a85c7 /src/mods/mods.zig | |
parent | 7cf43ccb8b8b1726c2697188b9138847780cd08e (diff) |
Some progress on IR parsing.
Alhtough IR parsing is technically called while
parsing, since we lack the hability to parse
blocks or labels or if or any hard stuff really,
it does not affect code parsing. However it is
nice to have it there as zig compiles it :)
Diffstat (limited to 'src/mods/mods.zig')
-rw-r--r-- | src/mods/mods.zig | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mods/mods.zig b/src/mods/mods.zig index 9d845e1..f91fa7d 100644 --- a/src/mods/mods.zig +++ b/src/mods/mods.zig @@ -3,3 +3,6 @@ pub const VM = @import("vm.zig"); // TODO: is this really needed? pub const Wasm = @import("wasm.zig"); pub const IR = @import("ir.zig"); + +pub const GlobalRuntime = Wasm.GlobalRuntime; +pub const Runtime = VM.Runtime; |