Class: Hocon::Impl::Tokens::Comment::HashComment

Inherits:
Hocon::Impl::Tokens::Comment show all
Defined in:
lib/hocon/impl/tokens.rb

Instance Attribute Summary

Attributes inherited from Hocon::Impl::Tokens::Comment

#text

Instance Method Summary collapse

Methods inherited from Hocon::Impl::Tokens::Comment

#==, #can_equal, #hash, #to_s

Constructor Details

#initialize(origin, text) ⇒ HashComment

Returns a new instance of HashComment.



214
215
216
# File 'lib/hocon/impl/tokens.rb', line 214

def initialize(origin, text)
  super(origin, text)
end

Instance Method Details

#token_textObject



218
219
220
# File 'lib/hocon/impl/tokens.rb', line 218

def token_text
  "#" + @text
end