public class PrefixExpression
extends Expression
Represents a prefix unary expression like ++i or --value.
The operation is applied to the expression before the value is used.
Examples:
++counter - increment counter and return new value
--index - decrement index and return new value
| Fields inherited from class | Fields |
|---|---|
class Expression |
EMPTY_ARRAY |
| Constructor and description |
|---|
PrefixExpression(Token operation, Expression expression)Creates a prefix expression. |
| Type Params | Return Type | Name and description |
|---|---|---|
|
public Expression |
getExpression()Returns the expression being modified by the prefix operation. |
|
public Token |
getOperation()Returns the operator token. |
|
public String |
getText()Returns a string representation of this prefix expression. |
|
public ClassNode |
getType()Returns the type of this prefix expression, which is the type of the operand. |
|
public void |
setExpression(Expression expression)Sets the expression to apply the prefix operation to. |
|
public String |
toString()Returns a debug string representation. |
|
public Expression |
transformExpression(ExpressionTransformer transformer)Transforms this expression by applying the given transformer to the inner expression, creating a new prefix expression with the transformed operand. |
|
public void |
visit(GroovyCodeVisitor visitor)Accepts a GroovyCodeVisitor using the visitor pattern. |
| Methods inherited from class | Name |
|---|---|
class Expression |
getType, setType, transformExpression, transformExpressions, transformExpressions |
class AnnotatedNode |
addAnnotation, addAnnotation, addAnnotations, getAnnotations, getAnnotations, getDeclaringClass, getGroovydoc, getInstance, hasNoRealSourcePosition, isSynthetic, setDeclaringClass, setHasNoRealSourcePosition, setSynthetic |
class ASTNode |
copyNodeMetaData, getColumnNumber, getLastColumnNumber, getLastLineNumber, getLineNumber, getMetaDataMap, getText, setColumnNumber, setLastColumnNumber, setLastLineNumber, setLineNumber, setMetaDataMap, setSourcePosition, visit |
Creates a prefix expression.
operation - the operator token (++ or --)expression - the expression to apply the operation toReturns the expression being modified by the prefix operation.
Returns the operator token.
++ or -- tokenReturns a string representation of this prefix expression.
Returns the type of this prefix expression, which is the type of the operand.
Sets the expression to apply the prefix operation to.
expression - the expression, typically a variable or propertyReturns a debug string representation.
Transforms this expression by applying the given transformer to the inner expression, creating a new prefix expression with the transformed operand.
transformer - the ExpressionTransformer to applyAccepts a GroovyCodeVisitor using the visitor pattern.
visitor - the visitor to acceptCopyright © 2003-2026 The Apache Software Foundation. All rights reserved.