Package org.sonar.python.tree
Class DelStatementImpl
- java.lang.Object
-
- org.sonar.python.tree.PyTree
-
- org.sonar.python.tree.DelStatementImpl
-
- All Implemented Interfaces:
DelStatement,Statement,Tree
public class DelStatementImpl extends PyTree implements DelStatement
-
-
Constructor Summary
Constructors Constructor Description DelStatementImpl(com.sonar.sslr.api.AstNode astNode, Token delKeyword, List<Expression> expressionTrees)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaccept(TreeVisitor visitor)List<Tree>children()TokendelKeyword()List<Expression>expressions()Tree.KindgetKind()-
Methods inherited from class org.sonar.python.tree.PyTree
astNode, firstToken, is, lastToken, parent, setParent
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.sonar.python.api.tree.Tree
ancestors, astNode, descendants, descendants, firstToken, is, lastToken, parent
-
-
-
-
Constructor Detail
-
DelStatementImpl
public DelStatementImpl(com.sonar.sslr.api.AstNode astNode, Token delKeyword, List<Expression> expressionTrees)
-
-
Method Detail
-
delKeyword
public Token delKeyword()
- Specified by:
delKeywordin interfaceDelStatement
-
expressions
public List<Expression> expressions()
- Specified by:
expressionsin interfaceDelStatement
-
accept
public void accept(TreeVisitor visitor)
-
-