Uses of Class
io.github.protasm.jvmud.compiler.parser.ast.ASTArguments
Packages that use ASTArguments
Package
Description
Core parser for LPC, producing AST structures from token streams.
Expression-level AST nodes.
Visitor-style utilities that operate over the LPC AST.
-
Uses of ASTArguments in io.github.protasm.jvmud.compiler.parser
Methods in io.github.protasm.jvmud.compiler.parser that return ASTArguments -
Uses of ASTArguments in io.github.protasm.jvmud.compiler.parser.ast.expr
Methods in io.github.protasm.jvmud.compiler.parser.ast.expr that return ASTArgumentsModifier and TypeMethodDescriptionASTExprInvokeField.args()ASTExprInvokeLocal.args()ASTExprCallEfun.arguments()ASTExprCallMethod.arguments()ASTExprDynamicInvoke.arguments()ASTExprInvokeField.arguments()PreferASTExprInvokeField.arguments()for consistency with other call expressions.ASTExprInvokeLocal.arguments()PreferASTExprInvokeLocal.arguments()for consistency with other call expressions.ASTExprUnresolvedCall.arguments()ASTExprUnresolvedInvoke.arguments()ASTExprUnresolvedParentCall.arguments()ASTExprUnresolvedQualifiedCall.arguments()Constructors in io.github.protasm.jvmud.compiler.parser.ast.expr with parameters of type ASTArgumentsModifierConstructorDescriptionASTExprCallEfun(int line, Efun efun, ASTArguments arguments) ASTExprCallMethod(int line, ASTMethod method, ASTArguments arguments) ASTExprCallMethod(int line, ASTMethod method, ASTArguments arguments, boolean parentDispatch) ASTExprDynamicInvoke(int line, ASTExpression target, String methodName, ASTArguments arguments) ASTExprInvokeField(int line, ASTField field, String methodName, ASTArguments args) ASTExprInvokeLocal(int line, ASTLocal local, String methodName, ASTArguments args) ASTExprUnresolvedCall(int line, String name, ASTArguments arguments) ASTExprUnresolvedInvoke(int line, String targetName, String methodName, ASTArguments arguments) ASTExprUnresolvedParentCall(int line, String name, ASTArguments arguments) ASTExprUnresolvedQualifiedCall(int line, String qualifier, String name, ASTArguments arguments) -
Uses of ASTArguments in io.github.protasm.jvmud.compiler.parser.ast.visitor
Methods in io.github.protasm.jvmud.compiler.parser.ast.visitor with parameters of type ASTArgumentsModifier and TypeMethodDescriptiondefault voidASTVisitor.visitArguments(ASTArguments arguments) voidPrintVisitor.visitArguments(ASTArguments arguments)