Package org.sonar.python.api.tree
Interface AnnotatedAssignment
-
- All Known Implementing Classes:
AnnotatedAssignmentImpl
public interface AnnotatedAssignment extends Statement
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Expressionannotation()ExpressionassignedValue()TokencolonToken()TokenequalToken()Expressionvariable()-
Methods inherited from interface org.sonar.python.api.tree.Tree
accept, ancestors, astNode, children, descendants, descendants, firstToken, getKind, is, lastToken, parent
-
-
-
-
Method Detail
-
variable
Expression variable()
-
colonToken
Token colonToken()
-
annotation
Expression annotation()
-
equalToken
@CheckForNull Token equalToken()
-
assignedValue
@CheckForNull Expression assignedValue()
-
-