Uses of Interface
dev.zemco.codegame.compilation.parsing.IInstructionParser
Packages that use IInstructionParser
Package
Description
Components related to compilation of source code into executable programs.
Components related to parsing of raw instructions.
-
Uses of IInstructionParser in dev.zemco.codegame.compilation
Constructors in dev.zemco.codegame.compilation with parameters of type IInstructionParserModifierConstructorDescriptionCodeProgramCompiler(IInstructionParser instructionParser, IProgramBuilderFactory programBuilderFactory) Creates an instance ofCodeProgramCompiler. -
Uses of IInstructionParser in dev.zemco.codegame.compilation.parsing
Classes in dev.zemco.codegame.compilation.parsing that implement IInstructionParserModifier and TypeClassDescriptionclassAbstract base forinstruction parsersparsing a single namedinstructionencoded with parameters separated by whitespace.classImplementation of aninstruction parserthat delegates parsing to other provided parsers.classParses a namedinstructionwith a single address parameter by requesting it from a backingfactory.classParses a namedinstructionwith a single integer parameter by requesting it from a backingfactory.classParses a namedinstructionwith a single parameter by requesting it from a backingfactory.classParses a namedinstructionwithout parameters by requesting it fromsupplier.Constructor parameters in dev.zemco.codegame.compilation.parsing with type arguments of type IInstructionParserModifierConstructorDescriptionDelegatingInstructionParser(List<IInstructionParser> instructionParsers) Creates an instance ofDelegatingInstructionParserthat delegatesinstructionparsing to given parsers.