X-Git-Url: http://git.phpeclipse.com diff --git a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/parser/VariableInfo.java b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/parser/VariableInfo.java index ce09406..7699108 100644 --- a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/parser/VariableInfo.java +++ b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/parser/VariableInfo.java @@ -1,34 +1,34 @@ package net.sourceforge.phpdt.internal.compiler.parser; -import net.sourceforge.phpeclipse.internal.compiler.ast.SingleTypeReference; +import net.sourceforge.phpdt.internal.compiler.ast.SingleTypeReference; public class VariableInfo { - static final public int LEVEL_UNDEFINED = 0; + static final public int LEVEL_UNDEFINED = 0; - static final public int LEVEL_GLOBAL_VAR = 3; + static final public int LEVEL_GLOBAL_VAR = 3; - static final public int LEVEL_STATIC_VAR = 4; + static final public int LEVEL_STATIC_VAR = 4; - static final public int LEVEL_CLASS_UNIT = 5; + static final public int LEVEL_CLASS_UNIT = 5; - static final public int LEVEL_FUNCTION_DEFINITION = 6; + static final public int LEVEL_FUNCTION_DEFINITION = 6; - static final public int LEVEL_METHOD_DEFINITION = 7; + static final public int LEVEL_METHOD_DEFINITION = 7; - public int level = LEVEL_UNDEFINED; + public int level = LEVEL_UNDEFINED; - int startPosition; + int startPosition; - public SingleTypeReference reference = null; + public SingleTypeReference reference = null; - public char[] typeIdentifier = null; - - public VariableInfo(int startPosition) { - this(startPosition, LEVEL_UNDEFINED); - } + public char[] typeIdentifier = null; - public VariableInfo(int startPosition, int level) { - this.startPosition = startPosition; - this.level = level; - } + public VariableInfo(int startPosition) { + this(startPosition, LEVEL_UNDEFINED); + } + + public VariableInfo(int startPosition, int level) { + this.startPosition = startPosition; + this.level = level; + } } \ No newline at end of file