public class FloatLit_c extends Lit_c implements FloatLit
FloatLit
represents a literal in java of type
float
or double
.FloatLit.Kind
Term.Instance
Modifier and Type | Field and Description |
---|---|
protected FloatLit.Kind |
kind |
protected double |
value |
exceptions, reachable
Constructor and Description |
---|
FloatLit_c(Position pos,
FloatLit.Kind kind,
double value) |
FloatLit_c(Position pos,
FloatLit.Kind kind,
double value,
Ext ext) |
Modifier and Type | Method and Description |
---|---|
java.lang.Object |
constantValue(Lang lang)
Return the constant value of the expression, if any.
|
Node |
copy(NodeFactory nf)
Produce a copy of this node using the given NodeFactory.
|
FloatLit.Kind |
kind()
The kind of literal: FLOAT or DOUBLE.
|
FloatLit |
kind(FloatLit.Kind kind)
Set the kind of literal: FLOAT or DOUBLE.
|
protected <N extends FloatLit_c> |
kind(N n,
FloatLit.Kind kind) |
Precedence |
precedence()
Get the precedence of the expression.
|
void |
prettyPrint(CodeWriter w,
PrettyPrinter tr)
Pretty-print the AST using the given
CodeWriter . |
java.lang.String |
toString() |
Node |
typeCheck(TypeChecker tc)
Type check the AST.
|
double |
value()
The literal's value.
|
FloatLit |
value(double value)
Set the literal's value.
|
protected <N extends FloatLit_c> |
value(N n,
double value) |
acceptCFG, constantValueSet, firstChild, isConstant
booleanValue, buildTypes, byteValue, charValue, constantValue, constantValueSet, doubleValue, dump, extRewrite, floatValue, intValue, isConstant, isTypeChecked, lastLang, longValue, printSubExpr, printSubExpr, shortValue, stringValue, type, type, type
exceptionCheck, exceptions, exceptions, exceptions, listChild, reachable, reachable, reachable
addDecls, buildTypesEnter, checkConstants, childExpectedType, copy, copy, copyIfNeeded, del, del, disambiguate, disambiguateEnter, disambiguateOverride, dump, dump, dump, dump, enterChildScope, enterScope, error, error, error, exceptionCheckEnter, ext, ext, ext, ext, extRewriteEnter, isDisambiguated, lang, position, position, position, prettyPrint, prettyPrint, prettyPrint, prettyPrint, print, printBlock, printSubStmt, throwTypes, translate, typeCheckEnter, typeCheckOverride, visit, visitChild, visitChildren, visitEdge, visitList
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
constantValue, constantValueSet, isConstant, printSubExpr, printSubExpr, type
del, del, dump, error, error, ext, ext, ext, ext, isDisambiguated, isTypeChecked, position, position, visit, visitEdge
addDecls, buildTypes, buildTypesEnter, checkConstants, childExpectedType, copy, disambiguate, disambiguateEnter, disambiguateOverride, dump, dump, dump, dump, enterChildScope, enterScope, exceptionCheck, exceptionCheckEnter, extRewrite, extRewriteEnter, lang, prettyPrint, prettyPrint, prettyPrint, prettyPrint, throwTypes, translate, typeCheckEnter, typeCheckOverride, visitChild, visitChildren, visitList
exceptions, exceptions, reachable, reachable
protected FloatLit.Kind kind
protected double value
public FloatLit_c(Position pos, FloatLit.Kind kind, double value)
public FloatLit_c(Position pos, FloatLit.Kind kind, double value, Ext ext)
public FloatLit.Kind kind()
FloatLit
public FloatLit kind(FloatLit.Kind kind)
FloatLit
protected <N extends FloatLit_c> N kind(N n, FloatLit.Kind kind)
public double value()
FloatLit
public FloatLit value(double value)
FloatLit
protected <N extends FloatLit_c> N value(N n, double value)
public Node typeCheck(TypeChecker tc) throws SemanticException
NodeOps
leave()
method of the
visitor. The method should perform work that should be done
after visiting the children of the node. The method may return
this
or a new copy of the node which will be
installed as a child of the node's parent.typeCheck
in interface NodeOps
typeCheck
in class Node_c
tc
- The type checking visitor.SemanticException
public void prettyPrint(CodeWriter w, PrettyPrinter tr)
Node_c
CodeWriter
.prettyPrint
in interface NodeOps
prettyPrint
in class Node_c
w
- The code writer to which to write.tr
- The pretty printer. This is not a visitor.public java.lang.Object constantValue(Lang lang)
ExprOps
isConstant()
is true.constantValue
in interface ExprOps
constantValue
in class Lit_c
public Precedence precedence()
Expr
precedence
in interface Expr
precedence
in class Lit_c