module Hocon::Impl::AbstractConfigNode
Public Instance Methods
Source
# File lib/hocon/impl/abstract_config_node.rb, line 21 def ==(other) other.is_a?(Hocon::Impl::AbstractConfigNode) && (render == other.render) end
Source
# File lib/hocon/impl/abstract_config_node.rb, line 13 def render orig_text = StringIO.new tokens.each do |t| orig_text << t.token_text end orig_text.string end
Source
# File lib/hocon/impl/abstract_config_node.rb, line 9 def tokens raise Hocon::ConfigError::ConfigBugOrBrokenError, "subclasses of AbstractConfigNode should override `tokens` (#{self.class})" end