Package com.sonarsource.rpg.api.tree
Interface UnaryExpressionTree
-
- All Superinterfaces:
ExpressionTree,Tree
public interface UnaryExpressionTree extends ExpressionTree
An expression composed of an operator and a single operand. The expression kind can beExpressionTree.Kind.UNARY_PLUS,ExpressionTree.Kind.UNARY_MINUSorExpressionTree.Kind.NOT.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface com.sonarsource.rpg.api.tree.ExpressionTree
ExpressionTree.Kind
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ExpressionTreeoperand()SyntaxTokenoperator()-
Methods inherited from interface com.sonarsource.rpg.api.tree.ExpressionTree
kind, tokens
-
-
-
-
Method Detail
-
operator
SyntaxToken operator()
-
operand
ExpressionTree operand()
-
-