pub fn assignDestructure(tree: Ast, node: Node.Index) full.AssignDestructure
pub fn assignDestructure(tree: Ast, node: Node.Index) full.AssignDestructure { const extra_index, const value_expr = tree.nodeData(node).extra_and_node; const variable_count = tree.extra_data[@backingInt(extra_index)]; return tree.fullAssignDestructureComponents(.{ .variables = tree.extraDataSliceWithLen(@fromBackingInt(@intCast(@backingInt(extra_index) + 1)), variable_count, Node.Index), .equal_token = tree.nodeMainToken(node), .value_expr = value_expr, }); }