Class: Puppet::Pops::Model::NamedDefinition
- Inherits:
-
Definition
- Object
- PopsObject
- Positioned
- Expression
- Definition
- Puppet::Pops::Model::NamedDefinition
- Defined in:
- lib/puppet/pops/model/ast.rb
Direct Known Subclasses
FunctionDefinition, HostClassDefinition, ResourceTypeDefinition
Instance Attribute Summary collapse
- #body ⇒ Object readonly
- #name ⇒ Object readonly
- #parameters ⇒ Object readonly
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) ⇒ 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) ⇒ NamedDefinition
constructor
A new instance of NamedDefinition.
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) ⇒ NamedDefinition
Returns a new instance of NamedDefinition.
1905 1906 1907 1908 1909 1910 1911 |
# File 'lib/puppet/pops/model/ast.rb', line 1905 def initialize(locator, offset, length, name, parameters = _pcore_type['parameters'].value, body = nil) super(locator, offset, length) @hash = @hash ^ name.hash ^ parameters.hash ^ body.hash @name = name @parameters = parameters @body = body end |
Instance Attribute Details
#body ⇒ Object (readonly)
1903 1904 1905 |
# File 'lib/puppet/pops/model/ast.rb', line 1903 def body @body end |
#name ⇒ Object (readonly)
1901 1902 1903 |
# File 'lib/puppet/pops/model/ast.rb', line 1901 def name @name end |
#parameters ⇒ Object (readonly)
1902 1903 1904 |
# File 'lib/puppet/pops/model/ast.rb', line 1902 def parameters @parameters end |
Class Method Details
._pcore_type ⇒ Object
1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 |
# File 'lib/puppet/pops/model/ast.rb', line 1858 def self._pcore_type @_pcore_type ||= Types::PObjectType.new('Puppet::AST::NamedDefinition', { 'parent' => Definition._pcore_type, 'attributes' => { 'name' => Types::PStringType::DEFAULT, 'parameters' => { 'type' => Types::PArrayType.new(Parameter._pcore_type), 'value' => [] }, 'body' => { 'type' => Types::POptionalType.new(Expression._pcore_type), 'value' => nil } } }) end |
.create(locator, offset, length, name, parameters = _pcore_type['parameters'].value, body = nil) ⇒ Object
1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 |
# File 'lib/puppet/pops/model/ast.rb', line 1889 def self.create(locator, offset, length, name, parameters = _pcore_type['parameters'].value, body = 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) new(locator, offset, length, name, parameters, body) end |
.from_asserted_hash(init_hash) ⇒ Object
1879 1880 1881 1882 1883 1884 1885 1886 1887 |
# File 'lib/puppet/pops/model/ast.rb', line 1879 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']) end |
.from_hash(init_hash) ⇒ Object
1875 1876 1877 |
# File 'lib/puppet/pops/model/ast.rb', line 1875 def self.from_hash(init_hash) from_asserted_hash(Types::TypeAsserter.assert_instance_of('Puppet::AST::NamedDefinition initializer', _pcore_type.init_hash_type, init_hash)) end |
Instance Method Details
#_pcore_all_contents(path, &block) ⇒ Object
1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 |
# File 'lib/puppet/pops/model/ast.rb', line 1926 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 path.pop end |
#_pcore_contents {|@body| ... } ⇒ Object
1921 1922 1923 1924 |
# File 'lib/puppet/pops/model/ast.rb', line 1921 def _pcore_contents @parameters.each { |value| yield(value) } yield(@body) unless @body.nil? end |
#_pcore_init_hash ⇒ Object
1913 1914 1915 1916 1917 1918 1919 |
# File 'lib/puppet/pops/model/ast.rb', line 1913 def _pcore_init_hash result = super result['name'] = @name result['parameters'] = @parameters unless _pcore_type['parameters'].default_value?(@parameters) result['body'] = @body unless @body == nil result end |
#eql?(o) ⇒ Boolean Also known as: ==
1939 1940 1941 1942 1943 1944 |
# File 'lib/puppet/pops/model/ast.rb', line 1939 def eql?(o) super && @name.eql?(o.name) && @parameters.eql?(o.parameters) && @body.eql?(o.body) end |