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 an explicit constructor call containing the cursor.
20 * Y.[start]super[end](1, 2)
26 * <SelectOnExplicitConstructorCall:Y.super(1, 2)>
32 import net.sourceforge.phpdt.internal.compiler.ast.ExplicitConstructorCall;
33 import net.sourceforge.phpdt.internal.compiler.lookup.BlockScope;
34 import net.sourceforge.phpdt.internal.compiler.lookup.ProblemReasons;
36 public class SelectionOnExplicitConstructorCall extends ExplicitConstructorCall {
37 public SelectionOnExplicitConstructorCall(int accessMode) {
40 public void resolve(BlockScope scope) {
43 // tolerate some error cases
44 if (binding == null ||
45 !(binding.isValidBinding() ||
46 binding.problemId() == ProblemReasons.NotVisible))
47 throw new SelectionNodeFound();
49 throw new SelectionNodeFound(binding);
51 public String toString(int tab) {
52 String s = tabString(tab);
53 s += "<SelectOnExplicitConstructorCall:"; //$NON-NLS-1$
54 if (qualification != null)
55 s = s + qualification.toStringExpression() + "."; //$NON-NLS-1$
56 if (accessMode == This) {
57 s = s + "this("; //$NON-NLS-1$
59 s = s + "super("; //$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 += ")>"; //$NON-NLS-1$