Class: Puppet::Pops::Model::FunctionDefinition
- Inherits:
-
NamedDefinition
- Object
- PopsObject
- Positioned
- Expression
- Definition
- NamedDefinition
- Puppet::Pops::Model::FunctionDefinition
- Defined in:
- lib/puppet/pops/model/ast.rb
Instance Attribute Summary collapse
- #return_type ⇒ Object readonly
Attributes inherited from NamedDefinition
Attributes inherited from Positioned
Attributes inherited from PopsObject
Class Method Summary collapse
- ._pcore_type ⇒ Object
- .create(locator, offset, length, name, parameters = _pcore_type['parameters'].value, body = nil, return_type = nil) ⇒ Object
- .from_asserted_hash(init_hash) ⇒ Object
- .from_hash(init_hash) ⇒ Object
Instance Method Summary collapse
- #_pcore_all_contents(path, &block) ⇒ Object
- #_pcore_contents {|@body| ... } ⇒ Object
- #_pcore_init_hash ⇒ Object
- #eql?(o) ⇒ Boolean (also: #==)
-
#initialize(locator, offset, length, name, parameters = _pcore_type['parameters'].value, body = nil, return_type = nil) ⇒ FunctionDefinition
constructor
A new instance of FunctionDefinition.
Methods inherited from Positioned
Methods inherited from PopsObject
Methods included from Types::PuppetObject
Constructor Details
#initialize(locator, offset, length, name, parameters = _pcore_type['parameters'].value, body = nil, return_type = nil) ⇒ FunctionDefinition
Returns a new instance of FunctionDefinition.
1982 1983 1984 1985 1986 |
# File 'lib/puppet/pops/model/ast.rb', line 1982 def initialize(locator, offset, length, name, parameters = _pcore_type['parameters'].value, body = nil, return_type = nil) super(locator, offset, length, name, parameters, body) @hash = @hash ^ return_type.hash @return_type = return_type end |
Instance Attribute Details
#return_type ⇒ Object (readonly)
1980 1981 1982 |
# File 'lib/puppet/pops/model/ast.rb', line 1980 def return_type @return_type end |
Class Method Details
._pcore_type ⇒ Object
1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 |
# File 'lib/puppet/pops/model/ast.rb', line 1940 def self._pcore_type @_pcore_type ||= Types::PObjectType.new('Puppet::AST::FunctionDefinition', { 'parent' => NamedDefinition._pcore_type, 'attributes' => { 'return_type' => { 'type' => Types::POptionalType.new(Expression._pcore_type), 'value' => nil } } }) end |
.create(locator, offset, length, name, parameters = _pcore_type['parameters'].value, body = nil, return_type = nil) ⇒ Object
1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 |
# File 'lib/puppet/pops/model/ast.rb', line 1967 def self.create(locator, offset, length, name, parameters = _pcore_type['parameters'].value, body = nil, return_type = nil) ta = Types::TypeAsserter attrs = _pcore_type.attributes(true) ta.assert_instance_of('Puppet::AST::Positioned[locator]', attrs['locator'].type, locator) ta.assert_instance_of('Puppet::AST::Positioned[offset]', attrs['offset'].type, offset) ta.assert_instance_of('Puppet::AST::Positioned[length]', attrs['length'].type, length) ta.assert_instance_of('Puppet::AST::NamedDefinition[name]', attrs['name'].type, name) ta.assert_instance_of('Puppet::AST::NamedDefinition[parameters]', attrs['parameters'].type, parameters) ta.assert_instance_of('Puppet::AST::NamedDefinition[body]', attrs['body'].type, body) ta.assert_instance_of('Puppet::AST::FunctionDefinition[return_type]', attrs['return_type'].type, return_type) new(locator, offset, length, name, parameters, body, return_type) end |
.from_asserted_hash(init_hash) ⇒ Object
1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 |
# File 'lib/puppet/pops/model/ast.rb', line 1956 def self.from_asserted_hash(init_hash) new( init_hash['locator'], init_hash['offset'], init_hash['length'], init_hash['name'], init_hash.fetch('parameters') { _pcore_type['parameters'].value }, init_hash['body'], init_hash['return_type']) end |
.from_hash(init_hash) ⇒ Object
1952 1953 1954 |
# File 'lib/puppet/pops/model/ast.rb', line 1952 def self.from_hash(init_hash) from_asserted_hash(Types::TypeAsserter.assert_instance_of('Puppet::AST::FunctionDefinition initializer', _pcore_type.init_hash_type, init_hash)) end |
Instance Method Details
#_pcore_all_contents(path, &block) ⇒ Object
2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 |
# File 'lib/puppet/pops/model/ast.rb', line 2000 def _pcore_all_contents(path, &block) path << self @parameters.each do |value| block.call(value, path) value._pcore_all_contents(path, &block) end unless @body.nil? block.call(@body, path) @body._pcore_all_contents(path, &block) end unless @return_type.nil? block.call(@return_type, path) @return_type._pcore_all_contents(path, &block) end path.pop end |
#_pcore_contents {|@body| ... } ⇒ Object
1994 1995 1996 1997 1998 |
# File 'lib/puppet/pops/model/ast.rb', line 1994 def _pcore_contents @parameters.each { |value| yield(value) } yield(@body) unless @body.nil? yield(@return_type) unless @return_type.nil? end |
#_pcore_init_hash ⇒ Object
1988 1989 1990 1991 1992 |
# File 'lib/puppet/pops/model/ast.rb', line 1988 def _pcore_init_hash result = super result['return_type'] = @return_type unless @return_type == nil result end |
#eql?(o) ⇒ Boolean Also known as: ==
2017 2018 2019 2020 |
# File 'lib/puppet/pops/model/ast.rb', line 2017 def eql?(o) super && @return_type.eql?(o.return_type) end |