dusk: re-eanble gkurve test
This commit is contained in:
parent
0d45438316
commit
1841ed056d
4 changed files with 28 additions and 64 deletions
|
|
@ -1,8 +1,8 @@
|
|||
const std = @import("std");
|
||||
|
||||
pub const Ast = @import("Ast.zig");
|
||||
pub const IR = @import("IR.zig");
|
||||
pub const printIR = @import("print_ir.zig").printIR;
|
||||
pub const Ast = @import("Ast.zig");
|
||||
pub const Parser = @import("Parser.zig");
|
||||
pub const Token = @import("Token.zig");
|
||||
pub const Tokenizer = @import("Tokenizer.zig");
|
||||
|
|
@ -13,3 +13,13 @@ pub const Extension = enum {
|
|||
|
||||
pub const Array = std.enums.EnumArray(Extension, bool);
|
||||
};
|
||||
|
||||
test {
|
||||
std.testing.refAllDecls(IR);
|
||||
std.testing.refAllDecls(@import("print_ir.zig"));
|
||||
std.testing.refAllDecls(Ast);
|
||||
std.testing.refAllDecls(Parser);
|
||||
std.testing.refAllDecls(Token);
|
||||
std.testing.refAllDecls(Tokenizer);
|
||||
std.testing.refAllDecls(ErrorList);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue