Class CallArgumentTreeImpl
- java.lang.Object
-
- org.sonar.php.tree.impl.PHPTree
-
- org.sonar.php.tree.impl.declaration.CallArgumentTreeImpl
-
- All Implemented Interfaces:
CallArgumentTree,Tree
public class CallArgumentTreeImpl extends PHPTree implements CallArgumentTree
-
-
Constructor Summary
Constructors Constructor Description CallArgumentTreeImpl(TreeFactory.Tuple<NameIdentifierTree,InternalSyntaxToken> nameAndToken, ExpressionTree value)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaccept(VisitorCheck visitor)Iterator<Tree>childrenIterator()Creates iterator for children of this node.Tree.KindgetKind()NameIdentifierTreename()SyntaxTokenseparator()ExpressionTreevalue()-
Methods inherited from class org.sonar.php.tree.impl.PHPTree
getFirstToken, getLastToken, getLine, getParent, is, isLeaf, setParent, toString
-
-
-
-
Constructor Detail
-
CallArgumentTreeImpl
public CallArgumentTreeImpl(@Nullable TreeFactory.Tuple<NameIdentifierTree,InternalSyntaxToken> nameAndToken, ExpressionTree value)
-
-
Method Detail
-
name
@Nullable public NameIdentifierTree name()
- Specified by:
namein interfaceCallArgumentTree
-
separator
@Nullable public SyntaxToken separator()
- Specified by:
separatorin interfaceCallArgumentTree
-
value
public ExpressionTree value()
- Specified by:
valuein interfaceCallArgumentTree
-
childrenIterator
public Iterator<Tree> childrenIterator()
Description copied from class:PHPTreeCreates iterator for children of this node. Note that iterator may containnullelements.- Specified by:
childrenIteratorin classPHPTree
-
accept
public void accept(VisitorCheck visitor)
-
-