Uses of Interface
org.sonar.plugins.python.api.tree.TypeAnnotation
-
Packages that use TypeAnnotation Package Description org.sonar.plugins.python.api.tree org.sonar.python.semantic org.sonar.python.tree org.sonar.python.types -
-
Uses of TypeAnnotation in org.sonar.plugins.python.api.tree
Methods in org.sonar.plugins.python.api.tree that return TypeAnnotation Modifier and Type Method Description TypeAnnotationAnnotatedAssignment. annotation()TypeAnnotationFunctionDef. returnTypeAnnotation()-> returnTypeTypeAnnotationParameter. typeAnnotation()Methods in org.sonar.plugins.python.api.tree with parameters of type TypeAnnotation Modifier and Type Method Description voidBaseTreeVisitor. visitTypeAnnotation(TypeAnnotation tree)voidTreeVisitor. visitTypeAnnotation(TypeAnnotation typeAnnotation) -
Uses of TypeAnnotation in org.sonar.python.semantic
Methods in org.sonar.python.semantic with parameters of type TypeAnnotation Modifier and Type Method Description voidSymbolImpl. setAnnotatedTypeName(TypeAnnotation typeAnnotation) -
Uses of TypeAnnotation in org.sonar.python.tree
Classes in org.sonar.python.tree that implement TypeAnnotation Modifier and Type Class Description classTypeAnnotationImplMethods in org.sonar.python.tree that return TypeAnnotation Modifier and Type Method Description TypeAnnotationAnnotatedAssignmentImpl. annotation()TypeAnnotationFunctionDefImpl. returnTypeAnnotation()TypeAnnotationParameterImpl. typeAnnotation()Constructors in org.sonar.python.tree with parameters of type TypeAnnotation Constructor Description AnnotatedAssignmentImpl(Expression variable, TypeAnnotation annotation, Token equalToken, Expression assignedValue, Separators separators)FunctionDefImpl(List<Decorator> decorators, Token asyncKeyword, Token defKeyword, Name name, Token leftPar, ParameterList parameters, Token rightPar, TypeAnnotation returnType, Token colon, Token newLine, Token indent, StatementList body, Token dedent, boolean isMethodDefinition, StringLiteral docstring)ParameterImpl(Token starToken, Name name, TypeAnnotation annotation, Token equalToken, Expression defaultValue) -
Uses of TypeAnnotation in org.sonar.python.types
Methods in org.sonar.python.types with parameters of type TypeAnnotation Modifier and Type Method Description static InferredTypeInferredTypes. fromTypeAnnotation(TypeAnnotation typeAnnotation)static InferredTypeInferredTypes. fromTypeshedTypeAnnotation(TypeAnnotation typeAnnotation)
-