feat: lex punctuation

This commit is contained in:
Araozu 2024-11-27 21:06:51 -05:00
parent 882d123fe0
commit b71cfe4370
3 changed files with 70 additions and 0 deletions

View File

@ -101,6 +101,7 @@ pub fn build(b: *std.Build) void {
"src/01_lexic/token.zig", "src/01_lexic/token.zig",
"src/01_lexic/utils.zig", "src/01_lexic/utils.zig",
"src/01_lexic/grouping.zig", "src/01_lexic/grouping.zig",
"src/01_lexic/punctiation.zig",
}; };
for (files) |file| { for (files) |file| {
const file_unit_test = b.addTest(.{ const file_unit_test = b.addTest(.{

View File

@ -0,0 +1,60 @@
const std = @import("std");
const assert = std.debug.assert;
const token = @import("./token.zig");
const utils = @import("./utils.zig");
const Token = token.Token;
const TokenType = token.TokenType;
const LexError = token.LexError;
const LexReturn = token.LexReturn;
pub fn lex(input: []const u8, start: usize) LexError!?LexReturn {
// there should be at least 1 char
assert(start < input.len);
const c = input[start];
const token_type = switch (c) {
',' => TokenType.Comma,
'\n' => TokenType.Newline,
else => {
return null;
},
};
return .{ Token.init(input[start .. start + 1], token_type, start), start + 1 };
}
test "shouldnt lex other things" {
const input = "322";
const output = try lex(input, 0);
try std.testing.expect(output == null);
}
test "should lex comma" {
const input = ",";
const output = try lex(input, 0);
if (output) |tuple| {
const t = tuple[0];
try std.testing.expectEqualDeep(",", t.value);
try std.testing.expectEqual(TokenType.Comma, t.token_type);
try std.testing.expectEqual(1, tuple[1]);
} else {
try std.testing.expect(false);
}
}
test "should lex new line" {
const input = "\n";
const output = try lex(input, 0);
if (output) |tuple| {
const t = tuple[0];
try std.testing.expectEqualDeep("\n", t.value);
try std.testing.expectEqual(TokenType.Newline, t.token_type);
try std.testing.expectEqual(1, tuple[1]);
} else {
try std.testing.expect(false);
}
}

View File

@ -8,6 +8,7 @@ const operator = @import("./operator.zig");
const comment = @import("./comment.zig"); const comment = @import("./comment.zig");
const string = @import("./string.zig"); const string = @import("./string.zig");
const grouping = @import("./grouping.zig"); const grouping = @import("./grouping.zig");
const punctuation = @import("./punctiation.zig");
const TokenType = token.TokenType; const TokenType = token.TokenType;
const Token = token.Token; const Token = token.Token;
@ -79,6 +80,14 @@ pub fn tokenize(input: []const u8, alloc: std.mem.Allocator) !void {
try tokens.append(t); try tokens.append(t);
} }
// lex punctuation
else if (try punctuation.lex(input, actual_next_pos)) |tuple| {
assert(tuple[1] > current_pos);
const t = tuple[0];
current_pos = tuple[1];
try tokens.append(t);
}
// nothing was matched. fail // nothing was matched. fail
// TODO: instead of failing add an error, ignore all chars // TODO: instead of failing add an error, ignore all chars
// until next whitespace, and continue lexing // until next whitespace, and continue lexing