X-Git-Url: http://git.phpeclipse.com diff --git a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/lookup/VariableBinding.java b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/lookup/VariableBinding.java index 04ee3da..19371b5 100644 --- a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/lookup/VariableBinding.java +++ b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/lookup/VariableBinding.java @@ -14,31 +14,39 @@ import net.sourceforge.phpdt.internal.compiler.impl.Constant; public abstract class VariableBinding extends Binding { public int modifiers; + public TypeBinding type; + public char[] name; + public Constant constant; + public int id; // for flow-analysis (position in flowInfo bit vector) -public boolean isConstantValue() { - return constant != Constant.NotAConstant; -} + public boolean isConstantValue() { + return constant != Constant.NotAConstant; + } -public final boolean isBlankFinal(){ - return (modifiers & AccBlankFinal) != 0; -} -/* Answer true if the receiver is final and cannot be changed -*/ + public final boolean isBlankFinal() { + return (modifiers & AccBlankFinal) != 0; + } -public final boolean isFinal() { - return (modifiers & AccFinal) != 0; -} -public char[] readableName() { - return name; -} -public String toString() { - String s = (type != null) ? type.debugName() : "UNDEFINED TYPE"; //$NON-NLS-1$ - s += " "; //$NON-NLS-1$ - s += (name != null) ? new String(name) : "UNNAMED FIELD"; //$NON-NLS-1$ - return s; -} + /* + * Answer true if the receiver is final and cannot be changed + */ + + public final boolean isFinal() { + return (modifiers & AccFinal) != 0; + } + + public char[] readableName() { + return name; + } + + public String toString() { + String s = (type != null) ? type.debugName() : "UNDEFINED TYPE"; //$NON-NLS-1$ + s += " "; //$NON-NLS-1$ + s += (name != null) ? new String(name) : "UNNAMED FIELD"; //$NON-NLS-1$ + return s; + } }