TryExpr

data class TryExpr(tryBranch: Node, catchBranch: CatchBranch?, finallyBranch: Node?, section: Section?) : Expr

Functions

accept
Link copied to clipboard
open override fun accept(visitor: NodeMapVisitor): Expr
open override fun accept(visitor: NodeVisitor)
open override fun <R> accept(visitor: NodeVisitorR<R>): R
open override fun <T> accept(visitor: NodeVisitor1<T>, param0: T)
span
Link copied to clipboard
open fun span(other: Sectional): Section?

Properties

catchBranch
Link copied to clipboard
val catchBranch: CatchBranch?
finallyBranch
Link copied to clipboard
val finallyBranch: Node?
section
Link copied to clipboard
open override val section: Section? = null
tryBranch
Link copied to clipboard
val tryBranch: Node