SubscriptSyntax

data class SubscriptSyntax(val operation: String, val left: MathSyntax, val right: MathSyntax) : BinarySyntax(source)

Represents a syntax node with subscript (xi).

Author

Iaroslav Postovalov

Constructors

Link copied to clipboard
constructor(operation: String, left: MathSyntax, right: MathSyntax)

Properties

Link copied to clipboard
open override val left: MathSyntax

The node.

Link copied to clipboard
open override val operation: String

The operation token.

Link copied to clipboard

The parent node of this syntax node.

Link copied to clipboard
open override val right: MathSyntax

The subscript.