Uses of Interface
org.sonar.plugins.python.api.tree.ArgList
Packages that use ArgList
-
Uses of ArgList in org.sonar.plugins.python.api.tree
Methods in org.sonar.plugins.python.api.tree that return ArgListModifier and TypeMethodDescriptionClassDef.args()null if class is defined without argsclass Foo:...orclass Foo():...CallExpression.argumentList()Decorator.arguments()Methods in org.sonar.plugins.python.api.tree with parameters of type ArgListModifier and TypeMethodDescriptionvoidBaseTreeVisitor.visitArgumentList(ArgList argList) voidTreeVisitor.visitArgumentList(ArgList argList) -
Uses of ArgList in org.sonar.python.tree
Classes in org.sonar.python.tree that implement ArgListMethods in org.sonar.python.tree that return ArgListModifier and TypeMethodDescriptionClassDefImpl.args()CallExpressionImpl.argumentList()DecoratorImpl.arguments()Constructors in org.sonar.python.tree with parameters of type ArgListModifierConstructorDescriptionCallExpressionImpl(Expression callee, ArgList argumentList, Token leftPar, Token rightPar) ClassDefImpl(List<Decorator> decorators, Token classKeyword, Name name, TypeParams typeParams, Token leftPar, ArgList args, Token rightPar, Token colon, Token newLine, Token indent, StatementList body, Token dedent, StringLiteral docstring)