*** empty log message ***
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / compiler / ast / Literal.java
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
7  * 
8  * Contributors:
9  *     IBM Corporation - initial API and implementation
10  ******************************************************************************/
11 package net.sourceforge.phpdt.internal.compiler.ast;
12
13 import net.sourceforge.phpdt.internal.compiler.impl.Constant;
14 import net.sourceforge.phpdt.internal.compiler.lookup.BlockScope;
15 import net.sourceforge.phpdt.internal.compiler.lookup.TypeBinding;
16
17 public abstract class Literal extends Expression {
18         
19
20 public Literal(int s,int e) {
21         sourceStart = s ;
22         sourceEnd= e;
23 }
24 public abstract void computeConstant() ;
25         //ON ERROR constant STAYS NULL
26 public abstract TypeBinding literalType(BlockScope scope);
27 public TypeBinding resolveType(BlockScope scope) {
28         // compute the real value, which must range its type's range
29
30         computeConstant();
31         if (constant == null) {
32                 scope.problemReporter().constantOutOfRange(this);
33                 constant = Constant.NotAConstant;
34                 return null;
35         }
36         return literalType(scope);
37 }
38 public abstract char[] source() ;
39 }