summaryrefslogtreecommitdiff
path: root/src/estd/parser/context.zig
blob: 56fb025178b9229688283baec135038c3eb196f5 (plain)
1
2
3
4
5
6
7
8
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,
    };
}