alignedVarDecl
Function parameters
Parameters
Index into `tokens`, or null.
Types
- OptionalTokenIndex
- Index into `tokens`, or null.
- TokenOffset
- A relative token index.
- OptionalTokenOffset
- A relative token index, or null.
- full
- Fully assembled AST node information.
- ExtraIndex
- Index into `extra_data`.
Functions in this namespace
Functions
- parse
- Result should be freed with tree.deinit() when there are
- renderAlloc
- `gpa` is used for allocating the resulting formatted source code.
- errorOffset
- Returns an extra offset for column and byte offset of errors that
- legacyAsm
- To be deleted after 0.15.0 is tagged
Source
Implementation
pub fn alignedVarDecl(tree: Ast, node: Node.Index) full.VarDecl {
assert(tree.nodeTag(node) == .aligned_var_decl);
const align_node, const init_node = tree.nodeData(node).node_and_opt_node;
return tree.fullVarDeclComponents(.{
.type_node = .none,
.align_node = align_node.toOptional(),
.addrspace_node = .none,
.section_node = .none,
.init_node = init_node,
.mut_token = tree.nodeMainToken(node),
});
}