data class Constant : Expression
A floating point constant. Scientific notation (2.3e10) is not supported.
<init> |
Constant(value: Double)
A floating point constant. Scientific notation (2.3e10) is not supported. |
value |
val value: Double
The value of the floating point constant. |
node |
open val node: Expression
Expression is also the node in the tree, so |
toString |
fun toString(): String
Return string which uniquely represents this expression and can be parsed to create an equivalent object. |