-
Notifications
You must be signed in to change notification settings - Fork 194
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix for issue #545: set name range of static method call expressions
- Loading branch information
1 parent
6620bc9
commit c8070b8
Showing
4 changed files
with
360 additions
and
0 deletions.
There are no files selected for viewing
113 changes: 113 additions & 0 deletions
113
base/org.codehaus.groovy24/src/org/codehaus/groovy/ast/expr/StaticMethodCallExpression.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,113 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you under the Apache License, Version 2.0 (the | ||
* "License"); you may not use this file except in compliance | ||
* with the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
package org.codehaus.groovy.ast.expr; | ||
|
||
import groovy.lang.MetaMethod; | ||
import org.codehaus.groovy.ast.ASTNode; | ||
import org.codehaus.groovy.ast.ClassNode; | ||
import org.codehaus.groovy.ast.GroovyCodeVisitor; | ||
|
||
/** | ||
* A static method call on a class | ||
* | ||
* @author <a href="mailto:[email protected]">James Strachan</a> | ||
*/ | ||
public class StaticMethodCallExpression extends Expression implements MethodCall { | ||
|
||
private ClassNode ownerType; | ||
private String method; | ||
private Expression arguments; | ||
private MetaMethod metaMethod = null; | ||
|
||
public StaticMethodCallExpression(ClassNode type, String method, Expression arguments) { | ||
ownerType = type; | ||
this.method = method; | ||
this.arguments = arguments; | ||
} | ||
|
||
public void visit(GroovyCodeVisitor visitor) { | ||
visitor.visitStaticMethodCallExpression(this); | ||
} | ||
|
||
public Expression transformExpression(ExpressionTransformer transformer) { | ||
Expression ret = new StaticMethodCallExpression(getOwnerType(), method, transformer.transform(arguments)); | ||
ret.setSourcePosition(this); | ||
ret.copyNodeMetaData(this); | ||
return ret; | ||
} | ||
|
||
public ASTNode getReceiver() { | ||
return ownerType; | ||
} | ||
|
||
public String getMethodAsString() { | ||
return method; | ||
} | ||
|
||
public Expression getArguments() { | ||
return arguments; | ||
} | ||
|
||
public String getMethod() { | ||
return method; | ||
} | ||
|
||
public String getText() { | ||
return getOwnerType().getName() + "." + method + arguments.getText(); | ||
} | ||
|
||
public String toString() { | ||
return super.toString() + "[" + getOwnerType().getName() + "#" + method + " arguments: " + arguments + "]"; | ||
} | ||
|
||
public ClassNode getOwnerType() { | ||
return ownerType; | ||
} | ||
|
||
public void setOwnerType(ClassNode ownerType) { | ||
this.ownerType = ownerType; | ||
} | ||
|
||
public void setMetaMethod(MetaMethod metaMethod) { | ||
this.metaMethod = metaMethod; | ||
} | ||
|
||
public MetaMethod getMetaMethod() { | ||
return metaMethod; | ||
} | ||
|
||
// GRECLIPSE add | ||
public void setSourcePosition(ASTNode node) { | ||
super.setSourcePosition(node); | ||
if (getNameEnd() < 1 && node.getEnd() > 0) { | ||
if (node instanceof MethodCallExpression) { | ||
node = ((MethodCallExpression) node).getMethod(); | ||
} else if (node instanceof BinaryExpression) { | ||
// likely "import static foo.Bar.setBaz; baz = null" | ||
node = ((BinaryExpression) node).getLeftExpression(); | ||
}/* else if (node instanceof VariableExpression) { | ||
// likely "import static foo.Bar.getBaz; def x = baz" | ||
}*/ | ||
setNameStart(node.getStart()); | ||
setNameEnd((node instanceof StaticMethodCallExpression ? | ||
((StaticMethodCallExpression) node).getMethod().length() : node.getEnd()) - 1); | ||
} | ||
} | ||
// GRECLIPSE end | ||
} |
113 changes: 113 additions & 0 deletions
113
base/org.codehaus.groovy25/src/org/codehaus/groovy/ast/expr/StaticMethodCallExpression.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,113 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you under the Apache License, Version 2.0 (the | ||
* "License"); you may not use this file except in compliance | ||
* with the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
package org.codehaus.groovy.ast.expr; | ||
|
||
import groovy.lang.MetaMethod; | ||
import org.codehaus.groovy.ast.ASTNode; | ||
import org.codehaus.groovy.ast.ClassNode; | ||
import org.codehaus.groovy.ast.GroovyCodeVisitor; | ||
|
||
/** | ||
* A static method call on a class | ||
* | ||
* @author <a href="mailto:[email protected]">James Strachan</a> | ||
*/ | ||
public class StaticMethodCallExpression extends Expression implements MethodCall { | ||
|
||
private ClassNode ownerType; | ||
private final String method; | ||
private final Expression arguments; | ||
private MetaMethod metaMethod = null; | ||
|
||
public StaticMethodCallExpression(ClassNode type, String method, Expression arguments) { | ||
ownerType = type; | ||
this.method = method; | ||
this.arguments = arguments; | ||
} | ||
|
||
public void visit(GroovyCodeVisitor visitor) { | ||
visitor.visitStaticMethodCallExpression(this); | ||
} | ||
|
||
public Expression transformExpression(ExpressionTransformer transformer) { | ||
Expression ret = new StaticMethodCallExpression(getOwnerType(), method, transformer.transform(arguments)); | ||
ret.setSourcePosition(this); | ||
ret.copyNodeMetaData(this); | ||
return ret; | ||
} | ||
|
||
public ASTNode getReceiver() { | ||
return ownerType; | ||
} | ||
|
||
public String getMethodAsString() { | ||
return method; | ||
} | ||
|
||
public Expression getArguments() { | ||
return arguments; | ||
} | ||
|
||
public String getMethod() { | ||
return method; | ||
} | ||
|
||
public String getText() { | ||
return getOwnerType().getName() + "." + method + arguments.getText(); | ||
} | ||
|
||
public String toString() { | ||
return super.toString() + "[" + getOwnerType().getName() + "#" + method + " arguments: " + arguments + "]"; | ||
} | ||
|
||
public ClassNode getOwnerType() { | ||
return ownerType; | ||
} | ||
|
||
public void setOwnerType(ClassNode ownerType) { | ||
this.ownerType = ownerType; | ||
} | ||
|
||
public void setMetaMethod(MetaMethod metaMethod) { | ||
this.metaMethod = metaMethod; | ||
} | ||
|
||
public MetaMethod getMetaMethod() { | ||
return metaMethod; | ||
} | ||
|
||
// GRECLIPSE add | ||
public void setSourcePosition(ASTNode node) { | ||
super.setSourcePosition(node); | ||
if (getNameEnd() < 1 && node.getEnd() > 0) { | ||
if (node instanceof MethodCallExpression) { | ||
node = ((MethodCallExpression) node).getMethod(); | ||
} else if (node instanceof BinaryExpression) { | ||
// likely "import static foo.Bar.setBaz; baz = null" | ||
node = ((BinaryExpression) node).getLeftExpression(); | ||
}/* else if (node instanceof VariableExpression) { | ||
// likely "import static foo.Bar.getBaz; def x = baz" | ||
}*/ | ||
setNameStart(node.getStart()); | ||
setNameEnd((node instanceof StaticMethodCallExpression ? | ||
((StaticMethodCallExpression) node).getMethod().length() : node.getEnd()) - 1); | ||
} | ||
} | ||
// GRECLIPSE end | ||
} |
113 changes: 113 additions & 0 deletions
113
base/org.codehaus.groovy26/src/org/codehaus/groovy/ast/expr/StaticMethodCallExpression.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,113 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The ASF licenses this file | ||
* to you under the Apache License, Version 2.0 (the | ||
* "License"); you may not use this file except in compliance | ||
* with the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
package org.codehaus.groovy.ast.expr; | ||
|
||
import groovy.lang.MetaMethod; | ||
import org.codehaus.groovy.ast.ASTNode; | ||
import org.codehaus.groovy.ast.ClassNode; | ||
import org.codehaus.groovy.ast.GroovyCodeVisitor; | ||
|
||
/** | ||
* A static method call on a class | ||
* | ||
* @author <a href="mailto:[email protected]">James Strachan</a> | ||
*/ | ||
public class StaticMethodCallExpression extends Expression implements MethodCall { | ||
|
||
private ClassNode ownerType; | ||
private final String method; | ||
private final Expression arguments; | ||
private MetaMethod metaMethod = null; | ||
|
||
public StaticMethodCallExpression(ClassNode type, String method, Expression arguments) { | ||
ownerType = type; | ||
this.method = method; | ||
this.arguments = arguments; | ||
} | ||
|
||
public void visit(GroovyCodeVisitor visitor) { | ||
visitor.visitStaticMethodCallExpression(this); | ||
} | ||
|
||
public Expression transformExpression(ExpressionTransformer transformer) { | ||
Expression ret = new StaticMethodCallExpression(getOwnerType(), method, transformer.transform(arguments)); | ||
ret.setSourcePosition(this); | ||
ret.copyNodeMetaData(this); | ||
return ret; | ||
} | ||
|
||
public ASTNode getReceiver() { | ||
return ownerType; | ||
} | ||
|
||
public String getMethodAsString() { | ||
return method; | ||
} | ||
|
||
public Expression getArguments() { | ||
return arguments; | ||
} | ||
|
||
public String getMethod() { | ||
return method; | ||
} | ||
|
||
public String getText() { | ||
return getOwnerType().getName() + "." + method + arguments.getText(); | ||
} | ||
|
||
public String toString() { | ||
return super.toString() + "[" + getOwnerType().getName() + "#" + method + " arguments: " + arguments + "]"; | ||
} | ||
|
||
public ClassNode getOwnerType() { | ||
return ownerType; | ||
} | ||
|
||
public void setOwnerType(ClassNode ownerType) { | ||
this.ownerType = ownerType; | ||
} | ||
|
||
public void setMetaMethod(MetaMethod metaMethod) { | ||
this.metaMethod = metaMethod; | ||
} | ||
|
||
public MetaMethod getMetaMethod() { | ||
return metaMethod; | ||
} | ||
|
||
// GRECLIPSE add | ||
public void setSourcePosition(ASTNode node) { | ||
super.setSourcePosition(node); | ||
if (getNameEnd() < 1 && node.getEnd() > 0) { | ||
if (node instanceof MethodCallExpression) { | ||
node = ((MethodCallExpression) node).getMethod(); | ||
} else if (node instanceof BinaryExpression) { | ||
// likely "import static foo.Bar.setBaz; baz = null" | ||
node = ((BinaryExpression) node).getLeftExpression(); | ||
}/* else if (node instanceof VariableExpression) { | ||
// likely "import static foo.Bar.getBaz; def x = baz" | ||
}*/ | ||
setNameStart(node.getStart()); | ||
setNameEnd((node instanceof StaticMethodCallExpression ? | ||
((StaticMethodCallExpression) node).getMethod().length() : node.getEnd()) - 1); | ||
} | ||
} | ||
// GRECLIPSE end | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters