blob: 03b386e3d9fbdc2052fb8e30caefe5f62d7df4ba (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
//! This is a Javascript parser and tokenizer.
//! It is and probably will never be complete,
//! since js is a very strange language and I want
//! to move forward and code on more interesting things
//! I started something called mujs (micro-js). It's a
//! subset of the javascript language. It does not support
//! the regex literal and currently also not template strings.
//! It is chosen like that to make parsing easier and also less
//! context-dependent.
const std = @import("std");
const parser = @import("../../root.zig");
pub const Lexer = parser.Lexer(Grammar);
pub const Token = parser.Token(Grammar);
pub const Whitespace = @import("whitespace.zig").Whitespace;
pub const Keyword = @import("keyword.zig").Keyword;
pub const Literal = @import("literal.zig").Literal;
pub const Punctuator = @import("punctuator.zig").Punctuator;
pub const Identifier = @import("identifier.zig").Identifier;
pub const Grammar = union(enum) {
whitespace: Whitespace,
keyword: Keyword,
literal: Literal,
punctuator: Punctuator,
identifier: Identifier,
end_of_file: void,
pub inline fn tokenize(comptime lexer: *Lexer) Lexer.Error!void {
comptime {
while (lexer.peekChar()) |_| {
Whitespace.tokenize(lexer) catch {
Keyword.tokenize(lexer) catch {
Literal.tokenize(lexer) catch {
Punctuator.tokenize(lexer) catch {
try Identifier.tokenize(lexer);
};
};
};
};
}
lexer.commit(lexer.start(.end_of_file));
}
}
};
test {
_ = std.testing.refAllDecls(@This());
}
|