Sha256: 458eb9e80a50ba017701c73f73cb0804fae25eb0bdf1a223b9dc5ffec51dffb7

Contents?: true

Size: 415 Bytes

Versions: 1

Compression:

Stored size: 415 Bytes

Contents

# encoding: utf-8
# frozen_string_literal: true

require "carbon/compiler/node/definition/enum/element"

module Carbon
  module Compiler
    module Node
      module Definition
        # An Enum definition.  Enums contain a set of elements that have
        # associated type or value information.
        class Enum < Base
          def data?
            true
          end
        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/definition/enum.rb