# encoding: utf-8 # frozen_string_literal: true module Carbon module Compiler module Node module Statement # A "try" statement. This is used in try/catch/finally for # exception handling. # This has two children: the body to attempt to execute, and the # following catch/finally block. This takes the form of # `try `. class Try < Base attributes body: 0, follow: 1 end end end end end