Class: PuppetStrings::Yard::Parsers::Puppet::DefinedTypeStatement

Inherits:
ParameterizedStatement show all
Defined in:
lib/puppet-strings/yard/parsers/puppet/statement.rb

Overview

Implements the Puppet defined type statement.

Constant Summary

Constants inherited from Statement

Statement::COMMENT_REGEX

Instance Attribute Summary collapse

Attributes inherited from ParameterizedStatement

#parameters

Attributes inherited from Statement

#comments_range, #docstring, #file, #line, #source

Instance Method Summary collapse

Methods inherited from Statement

#comments, #comments_hash_flag, #extract_docstring, #show

Constructor Details

#initialize(object, file) ⇒ DefinedTypeStatement

Initializes the Puppet defined type statement.

Parameters:

  • object (Puppet::Pops::Model::ResourceTypeDefinition)

    The model object for the defined type statement.

  • file (String)

    The file containing the statement.



128
129
130
131
# File 'lib/puppet-strings/yard/parsers/puppet/statement.rb', line 128

def initialize(object, file)
  super(object, file)
  @name = object.name
end

Instance Attribute Details

#nameObject (readonly)

Returns the value of attribute name.



123
124
125
# File 'lib/puppet-strings/yard/parsers/puppet/statement.rb', line 123

def name
  @name
end