Sha256: d3c67a6b9ecc8af3ecdab8d34e678687f9081264aa224406992c19cf3d5f29c4
Contents?: true
Size: 422 Bytes
Versions: 1
Compression:
Stored size: 422 Bytes
Contents
# 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 <Body>`. class Finally < Base attributes body: 0 end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
carbon-compiler-0.2.0 | lib/carbon/compiler/node/statement/finally.rb |