Class: PuppetStrings::Yard::Parsers::Puppet::ClassStatement

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

Overview

Implements the Puppet class 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) ⇒ ClassStatement

Initializes the Puppet class statement.

Parameters:

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

    The model object for the class statement.

  • file (String)

    The file containing the statement.



118
119
120
121
122
# File 'lib/puppet-strings/yard/parsers/puppet/statement.rb', line 118

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

Instance Attribute Details

#nameObject (readonly)

Returns the value of attribute name.



112
113
114
# File 'lib/puppet-strings/yard/parsers/puppet/statement.rb', line 112

def name
  @name
end

#parent_classObject (readonly)

Returns the value of attribute parent_class.



113
114
115
# File 'lib/puppet-strings/yard/parsers/puppet/statement.rb', line 113

def parent_class
  @parent_class
end