View Source Hologram.Compiler.IR.Try (hologram v0.2.0)

Summary

Types

t()

@type t() :: %Hologram.Compiler.IR.Try{
  after_block: Hologram.Compiler.IR.Block.t(),
  body: Hologram.Compiler.IR.Block.t(),
  catch_clauses: [Hologram.Compiler.IR.TryCatchClause.t()],
  else_clauses: [Hologram.Compiler.IR.Clause.t()],
  rescue_clauses: [Hologram.Compiler.IR.TryRescueClause.t()]
}