# encoding: utf-8 # frozen_string_literal: true module Carbon module Compiler module Node module Statement # A Finally statement. This is used in try/catch/finally constructs # for exception handling. This has one child: the body to execute. # This takes the form of `finally `. class Finally < Base attributes body: 0 end end end end end