class Hocon::Impl::ResolveSource::ValueWithPath

value is allowed to be null

Attributes

path_from_root[R]
value[R]

Public Class Methods

new(value, path_from_root) click to toggle source
# File lib/hocon/impl/resolve_source.rb, line 257
def initialize(value, path_from_root)
  @value = value
  @path_from_root = path_from_root
end

Public Instance Methods

to_s() click to toggle source
# File lib/hocon/impl/resolve_source.rb, line 262
def to_s
  "ValueWithPath(value=" + @value + ", pathFromRoot=" + @path_from_root + ")"
end