add panic.nix and assertions to type checks

This commit is contained in:
Emile Clark-Boman 2025-12-14 22:41:17 +10:00
parent fd008cd2e1
commit ea01dcc827
5 changed files with 44 additions and 25 deletions

View file

@ -6,11 +6,12 @@
std = mkMod ./std;
types = mkMod ./types;
parse = mkMod ./parse;
panic = mkMod ./panic.nix;
nib = std.mergeAttrsList [
# submodule content is accessible first by submodule name
# then by the name of the content (ie self.submodule.myFunc)
{inherit std types parse;}
{inherit std types panic parse;}
# submodule is included directly to this module (ie self.myFunc)