blob: 262dfdb5cecab5dd03f4e6dfeb8ca099e6e06c99 [file] [log] [blame]
package org.eclipse.jdt.internal.codeassist.select;
/*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
/*
* Selection node build by the parser in any case it was intending to
* reduce a message send containing the cursor.
* e.g.
*
* class X {
* void foo() {
* this.[start]bar[end](1, 2)
* }
* }
*
* ---> class X {
* void foo() {
* <SelectOnMessageSend:this.bar(1, 2)>
* }
* }
*
*/
import org.eclipse.jdt.internal.compiler.ast.*;
import org.eclipse.jdt.internal.compiler.lookup.*;
public class SelectionOnMessageSend extends MessageSend {
public TypeBinding resolveType(BlockScope scope) {
super.resolveType(scope);
if (binding == null || !binding.isValidBinding())
throw new SelectionNodeFound();
else
throw new SelectionNodeFound(binding);
}
public String toStringExpression() {
/*slow code*/
String s = "<SelectOnMessageSend:"/*nonNLS*/;
if (receiver != ThisReference.ThisImplicit)
s = s + receiver.toStringExpression() + "."/*nonNLS*/;
s = s + new String(selector) + "("/*nonNLS*/;
if (arguments != null) {
for (int i = 0; i < arguments.length; i++) {
s += arguments[i].toStringExpression();
if (i != arguments.length - 1) {
s += ", "/*nonNLS*/;
}
};
}
s = s + ")>"/*nonNLS*/;
return s;
}
}