From 265f2aa82ff9660a920197890832cfb930b2471e Mon Sep 17 00:00:00 2001 From: Jacob Sandlund Date: Mon, 7 Jul 2025 00:40:03 -0400 Subject: [PATCH] rest of changes, from stash --- src/unicode/lut.zig | 4 ++++ src/unicode/props.zig | 5 +++++ 2 files changed, 9 insertions(+) diff --git a/src/unicode/lut.zig b/src/unicode/lut.zig index 84d51792d..9e6c2be16 100644 --- a/src/unicode/lut.zig +++ b/src/unicode/lut.zig @@ -177,3 +177,7 @@ pub fn Tables(comptime Elem: type) type { } }; } + +test { + std.testing.refAllDecls(@This()); +} diff --git a/src/unicode/props.zig b/src/unicode/props.zig index 049f42ebd..a14b0c448 100644 --- a/src/unicode/props.zig +++ b/src/unicode/props.zig @@ -222,3 +222,8 @@ pub fn main() !void { // t.stage3.len, // }); } + +test { + _ = table; + _ = Properties; +}