Multi Expr
data class MultiExpr(list: List<Node>, last: Expr, section: Section?) : Expr, Node.Multi
Content copied to clipboard
This represents a given list of nodes, with the last node being necessarily an expression. Nodes must be executed sequentially. The value of this expression is the last expression's value. This AST node's main use is lambda bodies and REPL scopes.