Uses of Interface
org.sonar.plugins.python.api.tree.TypeParams
-
Packages that use TypeParams Package Description org.sonar.plugins.python.api.tree org.sonar.python.tree -
-
Uses of TypeParams in org.sonar.plugins.python.api.tree
Methods in org.sonar.plugins.python.api.tree that return TypeParams Modifier and Type Method Description TypeParamsClassDef. typeParams()TypeParamsFunctionDef. typeParams()TypeParamsTypeAliasStatement. typeParams()Methods in org.sonar.plugins.python.api.tree with parameters of type TypeParams Modifier and Type Method Description voidBaseTreeVisitor. visitTypeParams(TypeParams typeParams)voidTreeVisitor. visitTypeParams(TypeParams typeParams) -
Uses of TypeParams in org.sonar.python.tree
Classes in org.sonar.python.tree that implement TypeParams Modifier and Type Class Description classTypeParamsImplMethods in org.sonar.python.tree that return TypeParams Modifier and Type Method Description TypeParamsClassDefImpl. typeParams()TypeParamsFunctionDefImpl. typeParams()TypeParamsTypeAliasStatementImpl. typeParams()Constructors in org.sonar.python.tree with parameters of type TypeParams Constructor Description ClassDefImpl(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)
-