Function asmSimple [src]
Prototype
pub fn asmSimple(tree: Ast, node: Node.Index) full.Asm Parameters
tree: Astnode: Node.Index Source
pub fn asmSimple(tree: Ast, node: Node.Index) full.Asm {
const template, const rparen = tree.nodeData(node).node_and_token;
return tree.fullAsmComponents(.{
.asm_token = tree.nodeMainToken(node),
.template = template,
.items = &.{},
.rparen = rparen,
.clobbers = .none,
});
}