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 258 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 263 def to_s "ValueWithPath(value=" + @value + ", pathFromRoot=" + @path_from_root + ")" end