Package org.sonar.python.api.tree
Interface PyParameterTree
-
- All Superinterfaces:
PyAnyParameterTree,Tree
- All Known Implementing Classes:
PyParameterTreeImpl
public interface PyParameterTree extends PyAnyParameterTree
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PyExpressionTreedefaultValue()com.sonar.sslr.api.TokenequalToken()PyNameTreename()com.sonar.sslr.api.TokenstarToken()PyTypeAnnotationTreetypeAnnotation()
-
-
-
Method Detail
-
starToken
@CheckForNull com.sonar.sslr.api.Token starToken()
-
name
PyNameTree name()
-
typeAnnotation
@CheckForNull PyTypeAnnotationTree typeAnnotation()
-
equalToken
@CheckForNull com.sonar.sslr.api.Token equalToken()
-
defaultValue
@CheckForNull PyExpressionTree defaultValue()
-
-