Function fullAsm [src]
Prototype
pub fn fullAsm(tree: Ast, node: Node.Index) ?full.Asm
Parameters
tree: Ast
node: 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,
};
}