1 /*******************************************************************************
2 * Copyright (c) 2000, 2001, 2002 International Business Machines Corp. and others.
3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the Common Public License v0.5
5 * which accompanies this distribution, and is available at
6 * http://www.eclipse.org/legal/cpl-v05.html
9 * IBM Corporation - initial API and implementation
10 ******************************************************************************/
11 package net.sourceforge.phpdt.internal.codeassist.complete;
14 * Completion node build by the parser in any case it was intending to
15 * reduce a message send containing the cursor.
20 * this.bar(1, 2, [cursor]
26 * <CompleteOnMessageSend:this.bar(1, 2)>
30 * The source range is always of length 0.
31 * The arguments of the message send are all the arguments defined
35 import net.sourceforge.phpdt.internal.compiler.ast.MessageSend;
36 import net.sourceforge.phpdt.internal.compiler.ast.ThisReference;
37 import net.sourceforge.phpdt.internal.compiler.lookup.BlockScope;
38 import net.sourceforge.phpdt.internal.compiler.lookup.TypeBinding;
40 public class CompletionOnMessageSend extends MessageSend {
42 public TypeBinding resolveType(BlockScope scope) {
43 if (receiver == ThisReference.ThisImplicit)
44 throw new CompletionNodeFound(this, null, scope);
46 TypeBinding receiverType = receiver.resolveType(scope);
47 if (receiverType == null || receiverType.isBaseType())
48 throw new CompletionNodeFound();
50 if (receiverType.isArrayType())
51 receiverType = scope.getJavaLangObject();
52 throw new CompletionNodeFound(this, receiverType, scope);
55 public String toStringExpression() {
57 String s = "<CompleteOnMessageSend:"; //$NON-NLS-1$
58 if (receiver != ThisReference.ThisImplicit)
59 s = s + receiver.toStringExpression() + "."; //$NON-NLS-1$
60 s = s + new String(selector) + "("; //$NON-NLS-1$
61 if (arguments != null) {
62 for (int i = 0; i < arguments.length; i++) {
63 s += arguments[i].toStringExpression();
64 if (i != arguments.length - 1) {
65 s += ", "; //$NON-NLS-1$
69 s = s + ")>"; //$NON-NLS-1$