Function fullAsm [src]
Prototype
pub fn fullAsm(tree: Ast, node: Node.Index) ?full.Asm Parameters
tree: Astnode: Node.Index Source
pub fn fullAsm(tree: Ast, node: Node.Index) ?full.Asm {
return switch (tree.nodeTag(node)) {
.asm_simple => tree.asmSimple(node),
.@"asm" => tree.asmFull(node),
else => null,
};
}