SubtractExpression

data class SubtractExpression(lineNumber: Int, expr1: ExpressionNode, expr2: ExpressionNode) : BinaryExpression, ComparableTypes

Subtract expression

Constructors

SubtractExpression
Link copied to clipboard
fun SubtractExpression(lineNumber: Int, expr1: ExpressionNode, expr2: ExpressionNode)
Create empty Subtract expression

Functions

component1
Link copied to clipboard
operator fun component1(): Int
component2
Link copied to clipboard
operator fun component2(): ExpressionNode
component3
Link copied to clipboard
operator fun component3(): ExpressionNode
copy
Link copied to clipboard
fun copy(lineNumber: Int, expr1: ExpressionNode, expr2: ExpressionNode): SubtractExpression
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

compatibleTypes
Link copied to clipboard
open override val compatibleTypes: Set<Type>
expr1
Link copied to clipboard
open override val expr1: ExpressionNode
expr2
Link copied to clipboard
open override val expr2: ExpressionNode
lineNumber
Link copied to clipboard
open override val lineNumber: Int