# encoding: utf-8 # frozen_string_literal: true module Carbon module Compiler module Node module Expression # A "unit". This takes the form of `()`. This is # used as a sort of "mini-struct". Mostly unused at the moment. class Unit < Base attr_reader :type end end end end end