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.select;
14 * Selection node build by the parser in any case it was intending to
15 * reduce a super reference containing the assist identifier.
21 * [start]super[end].bar();
29 * <SelectOnQualifiedSuper:super>
36 import net.sourceforge.phpdt.internal.compiler.ast.SuperReference;
37 import net.sourceforge.phpdt.internal.compiler.lookup.BlockScope;
38 import net.sourceforge.phpdt.internal.compiler.lookup.TypeBinding;
40 public class SelectionOnSuperReference extends SuperReference {
42 public SelectionOnSuperReference(int pos, int sourceEnd) {
43 super(pos, sourceEnd);
45 public TypeBinding resolveType(BlockScope scope) {
46 TypeBinding binding = super.resolveType(scope);
48 if (binding == null || !binding.isValidBinding())
49 throw new SelectionNodeFound();
51 throw new SelectionNodeFound(binding);
53 public String toStringExpression(){
55 return "<SelectOnSuper:"+super.toStringExpression()+">"; //$NON-NLS-2$ //$NON-NLS-1$