Uses of Interface
org.sonar.plugins.python.api.tree.TypeParams
Packages that use TypeParams
-
Uses of TypeParams in org.sonar.plugins.python.api.tree
Methods in org.sonar.plugins.python.api.tree that return TypeParamsModifier and TypeMethodDescriptionClassDef.typeParams()FunctionDef.typeParams()TypeAliasStatement.typeParams()Methods in org.sonar.plugins.python.api.tree with parameters of type TypeParamsModifier and TypeMethodDescriptionvoidBaseTreeVisitor.visitTypeParams(TypeParams typeParams) voidTreeVisitor.visitTypeParams(TypeParams typeParams) -
Uses of TypeParams in org.sonar.python.tree
Classes in org.sonar.python.tree that implement TypeParamsMethods in org.sonar.python.tree that return TypeParamsModifier and TypeMethodDescriptionClassDefImpl.typeParams()FunctionDefImpl.typeParams()TypeAliasStatementImpl.typeParams()Constructors in org.sonar.python.tree with parameters of type TypeParamsModifierConstructorDescriptionClassDefImpl(List<Decorator> decorators, Token classKeyword, Name name, TypeParams typeParams, Token leftPar, ArgList args, Token rightPar, Token colon, Token newLine, Token indent, StatementList body, Token dedent, StringLiteral docstring) FunctionDefImpl(List<Decorator> decorators, Token asyncKeyword, Token defKeyword, Name name, TypeParams typeParams, Token leftPar, ParameterList parameters, Token rightPar, TypeAnnotation returnType, Token colon, Token newLine, Token indent, StatementList body, Token dedent, boolean isMethodDefinition, StringLiteral docstring) TypeAliasStatementImpl(Token typeKeyword, Name name, TypeParams typeParams, Token equalToken, Expression expression, Separators separator)