Uses of Interface
org.sonar.plugins.python.api.tree.Decorator
Packages that use Decorator
-
Uses of Decorator in org.sonar.plugins.python.api.tree
Methods in org.sonar.plugins.python.api.tree that return types with arguments of type DecoratorMethods in org.sonar.plugins.python.api.tree with parameters of type DecoratorModifier and TypeMethodDescriptionvoidBaseTreeVisitor.visitDecorator(Decorator decorator) voidTreeVisitor.visitDecorator(Decorator decorator) -
Uses of Decorator in org.sonar.python.tree
Classes in org.sonar.python.tree that implement DecoratorModifier and TypeClassDescriptionclassEven if decorator is not a statement, it extendsSimpleStatementin order to properly resolve its last token as it's a newline tokenMethods in org.sonar.python.tree that return types with arguments of type DecoratorConstructor parameters in org.sonar.python.tree with type arguments of type DecoratorModifierConstructorDescriptionClassDefImpl(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)