BinaryMinusSyntax

data class BinaryMinusSyntax(operation: String, left: OperandSyntax, right: OperandSyntax) : BinarySyntax

Represents binary, infix subtraction (42 − 42).

Author

Iaroslav Postovalov

Parameters

left

The minuend.

right

The subtrahend.

Constructors

BinaryMinusSyntax
Link copied to clipboard
common
fun BinaryMinusSyntax(operation: String, left: OperandSyntax, right: OperandSyntax)
The minuend.

Properties

left
Link copied to clipboard
common
open override val left: OperandSyntax
The minuend.
operation
Link copied to clipboard
common
open override val operation: String
The operation token.
parent
Link copied to clipboard
common
var parent: MathSyntax? = null
The parent node of this syntax node.
right
Link copied to clipboard
common
open override val right: OperandSyntax
The subtrahend.

Sources

common source
Link copied to clipboard