X-Git-Url: http://git.phpeclipse.com diff --git a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/ast/NumberLiteral.java b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/ast/NumberLiteral.java index a80651d..0ce2098 100644 --- a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/ast/NumberLiteral.java +++ b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/ast/NumberLiteral.java @@ -12,21 +12,29 @@ package net.sourceforge.phpdt.internal.compiler.ast; public abstract class NumberLiteral extends Literal { char[] source; -public NumberLiteral(char[] token, int s, int e) { - this(s,e) ; - source = token ; -} -public NumberLiteral(int s, int e) { - super (s,e) ; -} -public boolean isValidJavaStatement(){ - //should never be reach, but with a bug in the ast tree.... - //see comment on the Statement class - - return false ;} -public char[] source(){ - return source;} -public String toStringExpression(){ - - return new String(source);} + + public NumberLiteral(char[] token, int s, int e) { + this(s, e); + source = token; + } + + public NumberLiteral(int s, int e) { + super(s, e); + } + + public boolean isValidJavaStatement() { + // should never be reach, but with a bug in the ast tree.... + // see comment on the Statement class + + return false; + } + + public char[] source() { + return source; + } + + public String toStringExpression() { + + return new String(source); + } }