From 09691ec4d93cda6ab31d28d6e478257209fe625e Mon Sep 17 00:00:00 2001 From: Ernesto Lanchares Date: Mon, 24 Mar 2025 21:18:40 +0000 Subject: 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 :) --- src/mods/mods.zig | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/mods/mods.zig') 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; -- cgit v1.2.3