# encoding: utf-8 # frozen_string_literal: true module Carbon module Compiler module Node module Definition class Function < Base # The body of a function. This acts an array containing all of the # statements that make up a function. class Body < Base end end end end end end