Method: Hocon::Impl::Tokens::Comment#initialize

Defined in:
lib/hocon/impl/tokens.rb

#initialize(origin, text) ⇒ Comment

Returns a new instance of Comment.



198
199
200
201
# File 'lib/hocon/impl/tokens.rb', line 198

def initialize(origin, text)
  super(TokenType::COMMENT, origin)
  @text = text
end