We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d18df42 commit a535538Copy full SHA for a535538
README.md
@@ -3,6 +3,9 @@
3
[](https://github.com/dokwork/parcom/actions/workflows/ci.yml)
4
5
> [!WARNING]
6
+> This library is underdeveloped. API is not stable.
7
+
8
+> [!IMPORTANT]
9
> Required version of zig is 0.13.0
10
11
Parser combinators for Zig.
examples/expression.zig
@@ -103,7 +103,7 @@ fn expr(alloc: std.mem.Allocator) !p.TaggedParser(Value) {
103
.transform(Value, alloc, fns.calculate);
104
};
105
106
- return try sum.tagged(alloc);
+ return try sum.taggedAllocated(alloc);
107
}
108
109
fn evaluate(alloc: std.mem.Allocator, expression: []const u8) !?Value {
0 commit comments