blob: e0b67fb0c2a3c63bba7beb4f5b16be8e6f81bdd8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
const std = @import("std");
const lexer = @import("lexer.zig");
pub const Lexer = lexer.Lexer;
pub const Token = lexer.Token;
pub const js = @import("js/root.zig");
pub fn Parser(TokenType: type) type {
return struct {
buffer: []const TokenType,
};
}
test {
_ = std.testing.refAllDecls(@This());
}
|