UnaryPlusSyntax

data class UnaryPlusSyntax(operation: String, operand: OperandSyntax) : UnarySyntax

Represents prefix, unary plus operator (+x).

Author

Iaroslav Postovalov

Constructors

Link copied to clipboard
fun UnaryPlusSyntax(operation: String, operand: OperandSyntax)

Properties

Link copied to clipboard
open override val operand: OperandSyntax

The operand of this node.

Link copied to clipboard
open override val operation: String

The operation token.

Link copied to clipboard
var parent: MathSyntax? = null

The parent node of this syntax node.

Sources

Link copied to clipboard