Uses of Interface
org.sonar.plugins.python.api.tree.Name
Packages that use Name
Package
Description
-
Uses of Name in org.sonar.plugins.python.api.tree
Methods in org.sonar.plugins.python.api.tree that return NameModifier and TypeMethodDescriptionAliasedName.alias()KeywordPattern.attributeName()RegularArgument.keywordArgument()AssignmentExpression.lhsName()CapturePattern.name()ClassDef.name()FunctionDef.name()Parameter.name()QualifiedExpression.name()TypeAliasStatement.name()TypeParam.name()Methods in org.sonar.plugins.python.api.tree that return types with arguments of type NameModifier and TypeMethodDescriptionDottedName.names()GlobalStatement.variables()NonlocalStatement.variables()Methods in org.sonar.plugins.python.api.tree with parameters of type Name -
Uses of Name in org.sonar.python.cfg.fixpoint
Methods in org.sonar.python.cfg.fixpoint with parameters of type NameModifier and TypeMethodDescriptionReachingDefinitionsAnalysis.valuesAtLocation(Name variable) void -
Uses of Name in org.sonar.python.tree
Classes in org.sonar.python.tree that implement NameMethods in org.sonar.python.tree that return NameModifier and TypeMethodDescriptionAliasedNameImpl.alias()KeywordPatternImpl.attributeName()RegularArgumentImpl.keywordArgument()AssignmentExpressionImpl.lhsName()CapturePatternImpl.name()ClassDefImpl.name()FunctionDefImpl.name()ParameterImpl.name()protected static NamePythonTreeMaker.name(com.sonar.sslr.api.AstNode astNode) QualifiedExpressionImpl.name()TypeAliasStatementImpl.name()TypeParamImpl.name()Methods in org.sonar.python.tree that return types with arguments of type NameModifier and TypeMethodDescriptionDottedNameImpl.names()GlobalStatementImpl.variables()NonlocalStatementImpl.variables()Constructors in org.sonar.python.tree with parameters of type NameModifierConstructorDescriptionAliasedNameImpl(Token asKeyword, DottedName dottedName, Name alias) AssignmentExpressionImpl(Name name, Token walrusOperator, Expression expression) CapturePatternImpl(Name name) 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) KeywordPatternImpl(Name attributeName, Token equalToken, Pattern pattern) 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) TypeAliasStatementImpl(Token typeKeyword, Name name, TypeParams typeParams, Token equalToken, Expression expression, Separators separator) TypeParamImpl(Token starToken, Name name, TypeAnnotation annotation) Constructor parameters in org.sonar.python.tree with type arguments of type NameModifierConstructorDescriptionDottedNameImpl(List<Name> names) GlobalStatementImpl(Token globalKeyword, List<Name> variables, Separators separators) NonlocalStatementImpl(Token nonlocalKeyword, List<Name> variables, Separators separators)