Function ptrTypeAligned [src]
Prototype
pub fn ptrTypeAligned(tree: Ast, node: Node.Index) full.PtrType
Parameters
tree: Ast
node: Node.Index
Source
pub fn ptrTypeAligned(tree: Ast, node: Node.Index) full.PtrType {
assert(tree.nodeTag(node) == .ptr_type_aligned);
const align_node, const child_type = tree.nodeData(node).opt_node_and_node;
return tree.fullPtrTypeComponents(.{
.main_token = tree.nodeMainToken(node),
.align_node = align_node,
.addrspace_node = .none,
.sentinel = .none,
.bit_range_start = .none,
.bit_range_end = .none,
.child_type = child_type,
});
}