public abstract class AbstractGinqExpression
extends Expression
implements NodeMetaDataHandler
Represents GINQ expression which could hold metadata
| Fields inherited from class | Fields |
|---|---|
class Expression |
EMPTY_ARRAY |
| Type Params | Return Type | Name and description |
|---|---|---|
<R> |
public abstract R |
accept(GinqAstVisitor<R> visitor)Accepts a GINQ visitor. |
|
public Expression |
transformExpression(ExpressionTransformer transformer)Returns this expression because GINQ expressions are transformed elsewhere. |
|
public void |
visit(GroovyCodeVisitor visitor)Does nothing because GINQ expressions are visited through GinqAstVisitor. |
| 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 |
Accepts a GINQ visitor.
visitor - the visitor to acceptR - the visit result typeReturns this expression because GINQ expressions are transformed elsewhere.
transformer - the transformer requesting the changeDoes nothing because GINQ expressions are visited through GinqAstVisitor.
visitor - the Groovy code visitor