class Hocon::Impl::ConfigParser

Constants

ConfigBugOrBrokenError
ConfigConcatenation
ConfigIncludeKind
ConfigNodeComment
ConfigNodeInclude
ConfigNodeSingleToken
ConfigParseError
ConfigReference
ConfigSyntax
Path
SimpleConfigList
SimpleConfigObject
Tokens

Public Class Methods

parse(document, origin, options, include_context) click to toggle source
# File lib/hocon/impl/config_parser.rb, line 37
def self.parse(document, origin, options, include_context)
  context = Hocon::Impl::ConfigParser::ParseContext.new(
      options.syntax, origin, document,
      Hocon::Impl::SimpleIncluder.make_full(options.includer),
      include_context)
  context.parse
end