Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add peek functionality? #80

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 31 additions & 0 deletions mecha.zig
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ pub fn Parser(comptime _T: type) type {
pub const mapConst = mecha.mapConst;
pub const map = mecha.map;
pub const opt = mecha.opt;
pub const peek = mecha.peek;
pub const not = mecha.not;
};
}

Expand Down Expand Up @@ -361,6 +363,35 @@ test "opt" {
try expectOk(?u8, 0, null, try p1.parse(fa, "1"));
}

pub fn not(comptime parser: anytype) Parser(void) {
return _peek(parser, true);
}

pub fn peek(comptime parser: anytype) Parser(void) {
return _peek(parser, false);
}

Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

A doc comment for peek and not please :)

pub fn _peek(comptime parser: anytype, _not: bool) mecha.Parser(void) {
const Res = mecha.Result(void);
return .{ .parse = struct {
fn parse(allocator: mem.Allocator, str: []const u8) mecha.Error!Res {
const res = try parser.parse(allocator, str);
return switch (res.value) {
.ok => if (_not) Res.err(0) else Res.ok(0, {}),
.err => if (_not) Res.ok(0, {}) else Res.err(0),
};
}
}.parse };
}

test "peek" {
const fa = testing.failing_allocator;
const p1 = comptime ascii.range('a', 'z').peek();
try expectOk(void, 0, {}, try p1.parse(fa, "a"));
try expectOk(void, 0, {}, try p1.parse(fa, "aa"));
try expectErr(void, 0, try p1.parse(fa, "1"));
}
Comment on lines +387 to +393
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'd like to see a test case for not as well in case some refactor occurs and not no longer uses the same logic as peek


fn parsersTypes(comptime parsers: anytype) []const type {
var types: []const type = &[_]type{};
for (parsers) |parser| {
Expand Down