Sha256: 28bf7a0432db1f7833a1a8ad7b66c52398f8c9ba0565fe286abd357c91fca8b1

Contents?: true

Size: 405 Bytes

Versions: 1

Compression:

Stored size: 405 Bytes

Contents

# encoding: utf-8
# frozen_string_literal: true

module Carbon
  module Compiler
    module Node
      module Definition
        class Function < Base
          # An argument to a function.  This contains name and "klass" (type)
          # information for a specific argument.
          class Parameter < Base
            attributes name: 0, type: 1
          end
        end
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
carbon-compiler-0.2.0 lib/carbon/compiler/node/definition/function/parameter.rb