IntegerLiteralExpression

data class IntegerLiteralExpression(val text: String, val supplement: NodeSupplement = NodeSupplement()) : Node.Expression.ConstantLiteralExpression

AST node that represents an integer literal expression. The node corresponds to KtConstantExpression whose expressionType is KtNodeTypes.INTEGER_CONSTANT.

Constructors

Link copied to clipboard
constructor(text: String, supplement: NodeSupplement = NodeSupplement())

Properties

Link copied to clipboard
open override val supplement: NodeSupplement

Supplemental data for the node.

Link copied to clipboard
open override val text: String

string representation of this constant.