# encoding: utf-8 # frozen_string_literal: true module Carbon module Compiler module Node module Definition class Directive < Base # A directive "function." Mainly, this is a key-value store, with # the keys being the names of the parameters and the values being # the types of the parameters. class Function < Base end end end end end end