Sha256: 66e5ada48bb0620a7a8f3d34b34442099136f8ef93ef9358f67c513eac593198
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 # An else statement. This is used in the if/elsif/else construct # to handle control flow. This has one child: the body of the else # statement. This has the form of `else <Body>`. class Else < Base attribute 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/else.rb |