Parser.parseAsm

Parse inline assembler block. Enters with token on the asm. https://dlang.org/spec/iasm.html

AsmStatement: asm FunctionAttributes(opt) { AsmInstructionListopt } AsmInstructionList: AsmInstruction ; AsmInstruction ; AsmInstruction

class Parser(AST, Lexer = dmd.lexer.Lexer)
final
AST.Statement
parseAsm
()

Parameters

endOfLine bool

true if EOL means end of asm statement

Return Value

Type: AST.Statement

inline assembler block as a Statement

Meta