# encoding: utf-8 # frozen_string_literal: true module Carbon module Compiler module Node module Definition class Struct < Base # An element of a struct. This contains name and "klass" (type) # information for a structure element. class Element < Base attributes name: 0, type: 1 end end end end end end