public class MethodPointerExpression extends Expression
 Represents a method pointer on an object such as
 foo.&bar which means find the method pointer for the bar method on the foo instance.
 This is equivalent to:
 
 foo.metaClass.getMethodPointer(foo, "bar")
 
 
| Modifiers | Name | Description | 
|---|---|---|
protected Expression  | 
                            expression | 
                            |
protected Expression  | 
                            methodName | 
                            
| Fields inherited from class | Fields | 
|---|---|
class Expression | 
                            EMPTY_ARRAY | 
                        
| Constructor and description | 
|---|
                                MethodPointerExpression
                                (Expression expression, Expression methodName) | 
                        
| Type Params | Return Type | Name and description | 
|---|---|---|
 | 
                            public Expression | 
                            getExpression() | 
                        
 | 
                            public Expression | 
                            getMethodName() | 
                        
 | 
                            public String | 
                            getText() | 
                        
 | 
                            public Class | 
                            getTypeClass() | 
                        
 | 
                            public boolean | 
                            isDynamic() | 
                        
 | 
                            public Expression | 
                            transformExpression(ExpressionTransformer transformer) | 
                        
 | 
                            public void | 
                            visit(GroovyCodeVisitor visitor) | 
                        
| Methods inherited from class | Name | 
|---|---|
class Expression | 
                            getType, setType, transformExpression, transformExpressions, transformExpressions | 
                        
class AnnotatedNode | 
                            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 | 
                        
Copyright © 2003-2021 The Apache Software Foundation. All rights reserved.