1 /*******************************************************************************
2 * Copyright (c) 2000, 2003 IBM Corporation and others.
3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the Common Public License v1.0
5 * which accompanies this distribution, and is available at
6 * http://www.eclipse.org/legal/cpl-v10.html
9 * IBM Corporation - initial API and implementation
10 *******************************************************************************/
11 package net.sourceforge.phpdt.internal.compiler.ast;
13 import net.sourceforge.phpdt.internal.compiler.IAbstractSyntaxTreeVisitor;
14 import net.sourceforge.phpdt.internal.compiler.impl.Constant;
15 import net.sourceforge.phpdt.internal.compiler.lookup.BlockScope;
16 import net.sourceforge.phpdt.internal.compiler.lookup.TypeBinding;
19 public class FloatLiteral extends NumberLiteral {
21 final static float Float_MIN_VALUE = Float.intBitsToFloat(1); // work-around VAJ problem 1F6IGUU
22 public FloatLiteral(char[] token, int s, int e) {
25 public void computeConstant() {
27 //the source is correctly formated so the exception should never occurs
31 computedValue = Float.valueOf(String.valueOf(source));
32 } catch (NumberFormatException e) {
36 if (computedValue.doubleValue() > Float.MAX_VALUE){
37 return; //may be Infinity
39 if (computedValue.floatValue() < Float_MIN_VALUE){
41 //only a true 0 can be made of zeros
42 //1.00000000e-46f is illegal ....
43 label : for (int i = 0; i < source.length; i++) {
52 break label; //exposant are valid !....
60 constant = Constant.fromValue(value = computedValue.floatValue());
63 * Code generation for float literal
65 * @param currentScope net.sourceforge.phpdt.internal.compiler.lookup.BlockScope
66 * @param codeStream net.sourceforge.phpdt.internal.compiler.codegen.CodeStream
67 * @param valueRequired boolean
69 //public void generateCode(BlockScope currentScope, CodeStream codeStream, boolean valueRequired) {
70 // int pc = codeStream.position;
72 // if ((implicitConversion >> 4) == T_float)
73 // codeStream.generateInlinedValue(value);
75 // codeStream.generateConstant(constant, implicitConversion);
76 // codeStream.recordPositionsFrom(pc, this.sourceStart);
78 public TypeBinding literalType(BlockScope scope) {
81 public void traverse(IAbstractSyntaxTreeVisitor visitor, BlockScope blockScope) {
82 visitor.visit(this, blockScope);
83 visitor.endVisit(this, blockScope);