Class: Puppet::Pops::Serialization::Extension::Comment
- Defined in:
- lib/puppet/pops/serialization/extension.rb
Overview
The class that triggers the use of the COMMENT extension. The payload is comment text
Instance Attribute Summary collapse
- #comment ⇒ Object readonly
Instance Method Summary collapse
- #eql?(o) ⇒ Boolean (also: #==)
- #hash ⇒ Object
-
#initialize(comment) ⇒ Comment
constructor
A new instance of Comment.
Constructor Details
#initialize(comment) ⇒ Comment
Returns a new instance of Comment.
142 143 144 |
# File 'lib/puppet/pops/serialization/extension.rb', line 142 def initialize(comment) @comment = comment end |
Instance Attribute Details
#comment ⇒ Object (readonly)
141 142 143 |
# File 'lib/puppet/pops/serialization/extension.rb', line 141 def comment @comment end |
Instance Method Details
#eql?(o) ⇒ Boolean Also known as: ==
150 151 152 |
# File 'lib/puppet/pops/serialization/extension.rb', line 150 def eql?(o) o.is_a?(Comment) && o.comment == @comment end |
#hash ⇒ Object
146 147 148 |
# File 'lib/puppet/pops/serialization/extension.rb', line 146 def hash @comment.hash end |