Package org.sonar.python.tree
Class ParameterListImpl
- java.lang.Object
-
- org.sonar.python.tree.PyTree
-
- org.sonar.python.tree.ParameterListImpl
-
- All Implemented Interfaces:
ParameterList,Tree
public class ParameterListImpl extends PyTree implements ParameterList
-
-
Constructor Summary
Constructors Constructor Description ParameterListImpl(com.sonar.sslr.api.AstNode node, List<AnyParameter> parameters)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaccept(TreeVisitor visitor)List<AnyParameter>all()List<Tree>children()Tree.KindgetKind()List<Parameter>nonTuple()-
Methods inherited from class org.sonar.python.tree.PyTree
astNode, firstToken, is, lastToken, parent, setParent
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.sonar.python.api.tree.Tree
ancestors, astNode, descendants, descendants, firstToken, is, lastToken, parent
-
-
-
-
Constructor Detail
-
ParameterListImpl
public ParameterListImpl(com.sonar.sslr.api.AstNode node, List<AnyParameter> parameters)
-
-
Method Detail
-
nonTuple
public List<Parameter> nonTuple()
- Specified by:
nonTuplein interfaceParameterList
-
all
public List<AnyParameter> all()
- Specified by:
allin interfaceParameterList
-
accept
public void accept(TreeVisitor visitor)
-
-