summaryrefslogtreecommitdiff
path: root/src/mods/Parser.zig
diff options
context:
space:
mode:
Diffstat (limited to 'src/mods/Parser.zig')
-rw-r--r--src/mods/Parser.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mods/Parser.zig b/src/mods/Parser.zig
index 29f18d8..d9f7ccf 100644
--- a/src/mods/Parser.zig
+++ b/src/mods/Parser.zig
@@ -144,7 +144,7 @@ fn parseReftype(self: *Parser) !std.wasm.RefType {
// NOTE: Parsing of Valtype can be improved but it makes it less close to spec so...
// TODO: Do we really need Valtype?
-const Valtype = union(enum) {
+pub const Valtype = union(enum) {
val: std.wasm.Valtype,
ref: std.wasm.RefType,
};