Uses of Interface
org.sonar.plugins.python.api.tree.StringLiteral
Packages that use StringLiteral
Package
Description
-
Uses of StringLiteral in org.sonar.plugins.python.api.tree
Methods in org.sonar.plugins.python.api.tree that return StringLiteralModifier and TypeMethodDescriptionClassDef.docstring()FileInput.docstring()FunctionDef.docstring()Methods in org.sonar.plugins.python.api.tree with parameters of type StringLiteralModifier and TypeMethodDescriptionvoidBaseTreeVisitor.visitStringLiteral(StringLiteral pyStringLiteralTree) voidTreeVisitor.visitStringLiteral(StringLiteral stringLiteral) -
Uses of StringLiteral in org.sonar.python
Methods in org.sonar.python that return StringLiteralModifier and TypeMethodDescriptionstatic StringLiteralDocstringExtractor.extractDocstring(StatementList statements) -
Uses of StringLiteral in org.sonar.python.metrics
Methods in org.sonar.python.metrics with parameters of type StringLiteralModifier and TypeMethodDescriptionFileLinesVisitor.countDocstringLines(StringLiteral docstring) protected voidFileLinesVisitor.handleDocString(StringLiteral docstring) -
Uses of StringLiteral in org.sonar.python.semantic.v2.types
Methods in org.sonar.python.semantic.v2.types with parameters of type StringLiteralModifier and TypeMethodDescriptionvoidTrivialTypeInferenceVisitor.visitStringLiteral(StringLiteral stringLiteral) -
Uses of StringLiteral in org.sonar.python.tree
Classes in org.sonar.python.tree that implement StringLiteralMethods in org.sonar.python.tree that return StringLiteralModifier and TypeMethodDescriptionClassDefImpl.docstring()FileInputImpl.docstring()FunctionDefImpl.docstring()Constructors in org.sonar.python.tree with parameters of type StringLiteralModifierConstructorDescriptionClassDefImpl(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) FileInputImpl(StatementList statements, Token endOfFile, 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)