Interface AnnotatedAssignment
-
- All Known Implementing Classes:
AnnotatedAssignmentImpl
public interface AnnotatedAssignment extends Statement
See https://docs.python.org/3/reference/simple_stmts.html#annotated-assignment-statementsvariable()annotation()=assignedValue()
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TypeAnnotationannotation()ExpressionassignedValue()TokenequalToken()Expressionvariable()
-
-
-
Method Detail
-
variable
Expression variable()
-
annotation
TypeAnnotation annotation()
-
equalToken
@CheckForNull Token equalToken()
-
assignedValue
@CheckForNull Expression assignedValue()
-
-