Class: OpenvoxStrings::Yard::Parsers::Puppet::DefinedTypeStatement

Inherits:
ParameterizedStatement show all
Defined in:
lib/openvox-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.



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

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

Instance Attribute Details

#nameObject (readonly)

Returns the value of attribute name.



116
117
118
# File 'lib/openvox-strings/yard/parsers/puppet/statement.rb', line 116

def name
  @name
end