We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bce56b5 commit 99bf366Copy full SHA for 99bf366
1 file changed
src/html/document.zig
@@ -9,7 +9,6 @@ const selector_debug = @import("../debug/selector_debug.zig");
9
const instrumentation = @import("../debug/instrumentation.zig");
10
const parser = @import("parser.zig");
11
const node_api = @import("node.zig");
12
-const tags = @import("tags.zig");
13
const common = @import("../common.zig");
14
15
// SAFETY: Document owns `source` bytes for the life of nodes/iterators.
@@ -21,11 +20,6 @@ pub const InvalidIndex: u32 = common.InvalidIndex;
21
20
const QueryAccelMinBudgetBytes: usize = 4096;
22
const QueryAccelBudgetDivisor: usize = 20; // 5%
23
24
-const IndexSpan = struct {
25
- start: u32 = 0,
26
- len: u32 = 0,
27
-};
28
-
29
const QueryAccelIdLookup = union(enum) {
30
unavailable,
31
miss,
0 commit comments