Infix

data class Infix(val lhs: Tree, val op: String, val rhs: Tree) : Tree

LHS op RHS

Constructors

Link copied to clipboard
constructor(lhs: Tree, op: String, rhs: Tree)

Properties

Link copied to clipboard
val lhs: Tree
Link copied to clipboard
val op: String
Link copied to clipboard
val rhs: Tree