summaryrefslogtreecommitdiff
path: root/src/estd/parser/context.zig
diff options
context:
space:
mode:
Diffstat (limited to 'src/estd/parser/context.zig')
-rw-r--r--src/estd/parser/context.zig9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/estd/parser/context.zig b/src/estd/parser/context.zig
new file mode 100644
index 0000000..56fb025
--- /dev/null
+++ b/src/estd/parser/context.zig
@@ -0,0 +1,9 @@
+const std = @import("std");
+const Cursor = @import("../cursor.zig").Cursor;
+
+pub fn Context(comptime I: type) type {
+ return struct {
+ cursor: Cursor(I),
+ allocator: std.mem.Allocator,
+ };
+}