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