Class: Puppet::Parser::AST::Definition
- Inherits:
-
TopLevelConstruct
- Object
- Puppet::Parser::AST
- TopLevelConstruct
- Puppet::Parser::AST::Definition
- Defined in:
- lib/vendor/puppet/parser/ast/definition.rb
Constant Summary
Constants inherited from Puppet::Parser::AST
Constants included from Util::Docs
Instance Attribute Summary collapse
-
#context ⇒ Object
Returns the value of attribute context.
Attributes inherited from Puppet::Parser::AST
Attributes included from Util::Docs
Instance Method Summary collapse
-
#initialize(name, context = {}, &ruby_code) ⇒ Definition
constructor
A new instance of Definition.
- #instantiate(modname) ⇒ Object
Methods inherited from Puppet::Parser::AST
associates_doc, #evaluate, #evaluate_match, #inspect, #parsefail, #parsewrap, #safeevaluate, settor?, #use_docs
Methods included from Util::Docs
#desc, #dochook, #doctable, #markdown_definitionlist, #markdown_header, #nodoc?, #pad, scrub
Methods included from Util::MethodHelper
#requiredopts, #set_options, #symbolize_options
Methods included from Util::Errors
#adderrorcontext, #devfail, #error_context, #exceptwrap, #fail
Constructor Details
#initialize(name, context = {}, &ruby_code) ⇒ Definition
Returns a new instance of Definition.
6 7 8 9 10 |
# File 'lib/vendor/puppet/parser/ast/definition.rb', line 6 def initialize(name, context = {}, &ruby_code) @name = name @context = context @ruby_code = ruby_code end |
Instance Attribute Details
#context ⇒ Object
Returns the value of attribute context.
4 5 6 |
# File 'lib/vendor/puppet/parser/ast/definition.rb', line 4 def context @context end |
Instance Method Details
#instantiate(modname) ⇒ Object
12 13 14 15 16 |
# File 'lib/vendor/puppet/parser/ast/definition.rb', line 12 def instantiate(modname) new_definition = Puppet::Resource::Type.new(:definition, @name, @context.merge(:module_name => modname)) new_definition.ruby_code = @ruby_code if @ruby_code [new_definition] end |