Uses of Class
mars.assembler.token.Macro
Packages that use Macro
-
Uses of Macro in mars.assembler.token
Methods in mars.assembler.token that return MacroModifier and TypeMethodDescriptionMacroHandler.defineMacro
(Macro macro) Define a macro, allowing it to be called later.MacroHandler.findMatchingMacro
(String name, List<Token> arguments) Find the macro defined with the given name whose signature matches the given list of call arguments.Methods in mars.assembler.token that return types with arguments of type MacroModifier and TypeMethodDescriptionMacroHandler.findMatchingMacros
(String name) Find all macros defined with the given name, regardless of parameter count.Methods in mars.assembler.token with parameters of type MacroModifier and TypeMethodDescriptionMacroHandler.defineMacro
(Macro macro) Define a macro, allowing it to be called later.MacroHandler.instantiate
(Macro macro, List<Token> arguments, SourceLine callerLine, AssemblerLog log) Generate a macro call expansion using the given arguments.