SemanticTree: reorder getNodeDetails params

This commit is contained in:
Adrià Arrufat
2026-03-31 07:29:08 +02:00
parent b03dbc77ab
commit 008235222b
3 changed files with 3 additions and 3 deletions

View File

@@ -640,10 +640,10 @@ pub const NodeDetails = struct {
};
pub fn getNodeDetails(
arena: std.mem.Allocator,
node: *Node,
registry: *CDPNode.Registry,
page: *Page,
arena: std.mem.Allocator,
) !NodeDetails {
const cdp_node = try registry.register(node);
const axn = AXNode.fromNode(node);