Uses of Interface
org.sonar.plugins.python.api.tree.Name
-
Packages that use Name Package Description org.sonar.plugins.python.api.tree org.sonar.python.cfg.fixpoint org.sonar.python.tree -
-
Uses of Name in org.sonar.plugins.python.api.tree
Methods in org.sonar.plugins.python.api.tree that return Name Modifier and Type Method Description NameAliasedName. alias()NameRegularArgument. keywordArgument()NameClassDef. name()NameFunctionDef. name()NameParameter. name()NameQualifiedExpression. name()Methods in org.sonar.plugins.python.api.tree that return types with arguments of type Name Modifier and Type Method Description List<Name>DottedName. names()List<Name>GlobalStatement. variables()List<Name>NonlocalStatement. variables()Methods in org.sonar.plugins.python.api.tree with parameters of type Name Modifier and Type Method Description voidBaseTreeVisitor. visitName(Name pyNameTree)voidTreeVisitor. visitName(Name name) -
Uses of Name in org.sonar.python.cfg.fixpoint
Methods in org.sonar.python.cfg.fixpoint with parameters of type Name Modifier and Type Method Description voidUsageVisitor. visitName(Name name) -
Uses of Name in org.sonar.python.tree
Classes in org.sonar.python.tree that implement Name Modifier and Type Class Description classNameImplMethods in org.sonar.python.tree that return Name Modifier and Type Method Description NameAliasedNameImpl. alias()NameRegularArgumentImpl. keywordArgument()NameClassDefImpl. name()NameFunctionDefImpl. name()NameParameterImpl. name()NameQualifiedExpressionImpl. name()Methods in org.sonar.python.tree that return types with arguments of type Name Modifier and Type Method Description List<Name>DottedNameImpl. names()List<Name>GlobalStatementImpl. variables()List<Name>NonlocalStatementImpl. variables()Constructors in org.sonar.python.tree with parameters of type Name Constructor Description AliasedNameImpl(Token asKeyword, DottedName dottedName, Name alias)ClassDefImpl(List<Decorator> decorators, Token classKeyword, Name name, 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, 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)QualifiedExpressionImpl(Name name, Expression qualifier, Token dotToken)RegularArgumentImpl(Name keywordArgument, Token equalToken, Expression expression)Constructor parameters in org.sonar.python.tree with type arguments of type Name Constructor Description DottedNameImpl(List<Name> names)GlobalStatementImpl(Token globalKeyword, List<Name> variables, Separators separators)NonlocalStatementImpl(Token nonlocalKeyword, List<Name> variables, Separators separators)
-