Sha256: 88aea811c779d900279fddac324e24648e76bd64b17ad1225a8ee482e71883ed
Contents?: true
Size: 699 Bytes
Versions: 1
Compression:
Stored size: 699 Bytes
Contents
# encoding: utf-8 # frozen_string_literal: true module Carbon module Compiler module Node module Expression module Call # A basic module call. This is the most basic version of a call. # This takes the form `<ModuleName>.<Name>(<Arguments>)`. # This has three children: the module name, the name of the # function, and the arguments. # # @example # let a: Carbon::Pointer<Carbon::Integer>; # Carbon::Pointer<Carbon::Integer>.value=(a, 1); class Module < Base attributes module: 0, name: 1, parameters: 2, generics: 3 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/expression/call/module.rb |