# encoding: utf-8 # frozen_string_literal: true module Carbon module Compiler module Node module Definition class Enum < Base # An element of an Enumerable. This contains either type or value # information. class Element < Base end end end end end end