CastExpressionNode

data class CastExpressionNode(lineNumber: Int, targetType: PrimitiveType, expr: ExpressionNode) : ExpressionNode

Cast expression node

Constructors

CastExpressionNode
Link copied to clipboard
fun CastExpressionNode(lineNumber: Int, targetType: PrimitiveType, expr: ExpressionNode)
Create empty Cast expression node

Functions

component1
Link copied to clipboard
operator fun component1(): Int
component2
Link copied to clipboard
operator fun component2(): PrimitiveType
component3
Link copied to clipboard
operator fun component3(): ExpressionNode
copy
Link copied to clipboard
fun copy(lineNumber: Int, targetType: PrimitiveType, expr: ExpressionNode): CastExpressionNode
equals
Link copied to clipboard
open operator override fun equals(other: Any?): Boolean
hashCode
Link copied to clipboard
open override fun hashCode(): Int
toString
Link copied to clipboard
open override fun toString(): String

Properties

expr
Link copied to clipboard
val expr: ExpressionNode
lineNumber
Link copied to clipboard
open override val lineNumber: Int
targetType
Link copied to clipboard
val targetType: PrimitiveType