Uses of Interface
org.sonar.python.api.tree.Name
-
Packages that use Name Package Description org.sonar.python.api.tree org.sonar.python.tree -
-
Uses of Name in org.sonar.python.api.tree
Methods in org.sonar.python.api.tree that return Name Modifier and Type Method Description NameAliasedName. alias()NameArgument. keywordArgument()NameClassDef. name()NameFunctionDef. name()NameParameter. name()NameQualifiedExpression. name()Methods in org.sonar.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.python.api.tree with parameters of type Name Modifier and Type Method Description voidTreeVisitor. 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()NameArgumentImpl. 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()Methods in org.sonar.python.tree with parameters of type Name Modifier and Type Method Description voidBaseTreeVisitor. visitName(Name pyNameTree)Constructors in org.sonar.python.tree with parameters of type Name Constructor Description AliasedNameImpl(com.sonar.sslr.api.AstNode astNode, Token asKeyword, DottedName dottedName, Name alias)ArgumentImpl(com.sonar.sslr.api.AstNode node, Name keywordArgument, Expression expression, Token equalToken, Token star, Token starStar)ClassDefImpl(com.sonar.sslr.api.AstNode astNode, List<Decorator> decorators, Token classKeyword, Name name, Token leftPar, ArgList args, Token rightPar, Token colon, StatementList body, Token docstring)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)QualifiedExpressionImpl(com.sonar.sslr.api.AstNode astNode, Name name, Expression qualifier, Token dotToken)Constructor parameters in org.sonar.python.tree with type arguments of type Name Constructor Description DottedNameImpl(com.sonar.sslr.api.AstNode astNode, List<Name> names)GlobalStatementImpl(com.sonar.sslr.api.AstNode astNode, Token globalKeyword, List<Name> variables)NonlocalStatementImpl(com.sonar.sslr.api.AstNode astNode, Token nonlocalKeyword, List<Name> variables)
-