Uses of Interface
org.sonar.python.api.tree.TypeAnnotation
-
Packages that use TypeAnnotation Package Description org.sonar.python.api.tree org.sonar.python.tree -
-
Uses of TypeAnnotation in org.sonar.python.api.tree
Methods in org.sonar.python.api.tree that return TypeAnnotation Modifier and Type Method Description TypeAnnotationFunctionDef. returnTypeAnnotation()-> returnTypeTypeAnnotationParameter. typeAnnotation()Methods in org.sonar.python.api.tree with parameters of type TypeAnnotation Modifier and Type Method Description voidTreeVisitor. visitTypeAnnotation(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 TypeAnnotationFunctionDefImpl. returnTypeAnnotation()TypeAnnotationParameterImpl. typeAnnotation()Methods in org.sonar.python.tree with parameters of type TypeAnnotation Modifier and Type Method Description voidBaseTreeVisitor. visitTypeAnnotation(TypeAnnotation tree)Constructors in org.sonar.python.tree with parameters of type TypeAnnotation Constructor Description FunctionDefImpl(com.sonar.sslr.api.AstNode astNode, List<Decorator> decorators, Token asyncKeyword, Token defKeyword, Name name, Token leftPar, ParameterList parameters, Token rightPar, TypeAnnotation returnType, Token colon, StatementList body, boolean isMethodDefinition, Token docstring)ParameterImpl(com.sonar.sslr.api.AstNode node, Token starToken, Name name, TypeAnnotation annotation, Token equalToken, Expression defaultValue)
-