Skip to main content
summaryrefslogtreecommitdiffstats
blob: e70fe35b20a25ebe86d1a17855bd7cc807302029 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
package org.eclipse.jdt.internal.codeassist.complete;

/*
 * (c) Copyright IBM Corp. 2000, 2001.
 * All Rights Reserved.
 */
/*
 * Completion node build by the parser in any case it was intending to
 * reduce an access to a member (field reference or message send) 
 * containing the completion identifier.
 * e.g.
 *
 *	class X {
 *    void foo() {
 *      bar().fred[cursor]
 *    }
 *  }
 *
 *	---> class X {
 *         void foo() {
 *           <CompleteOnMemberAccess:bar().fred>
 *         }
 *       }
 *
 * The source range of the completion node denotes the source range
 * which should be replaced by the completion.
 */

import org.eclipse.jdt.internal.compiler.ast.*;
import org.eclipse.jdt.internal.compiler.lookup.*;

public class CompletionOnMemberAccess extends FieldReference {
public CompletionOnMemberAccess(char[] source , long pos) {
	super(source, pos);
}
public TypeBinding resolveType(BlockScope scope) {
	TypeBinding receiverType = receiver.resolveType(scope);
	if (receiverType == null || receiverType.isBaseType())
		throw new CompletionNodeFound();
	else
		throw new CompletionNodeFound(this, receiverType, scope); // array types are passed along to find the length field
}
public String toStringExpression(){
	/* slow code */
	
	return 	"<CompleteOnMemberAccess:" 
			+ super.toStringExpression() 
			+ ">";
}
}

Back to the top