# encoding: utf-8 # frozen_string_literal: true require "carbon/compiler/node/definition/struct/element" module Carbon module Compiler module Node module Definition # A struct definition. This sets up a structured block of memory # for various purposes. A Struct's children are its elements. class Struct < Base # If this definition is a data definition. A Structure is one of # many possible data definitions. # # @return [true] def data? true end end end end end end