class Hocon::Impl::ResolveSource::ResultWithPath
Attributes
path_from_root[R]
result[R]
Public Class Methods
new(result, path_from_root)
click to toggle source
# File lib/hocon/impl/resolve_source.rb, line 270 def initialize(result, path_from_root) @result = result @path_from_root = path_from_root end
Public Instance Methods
to_s()
click to toggle source
# File lib/hocon/impl/resolve_source.rb, line 275 def to_s "ResultWithPath(result=#{@result}, pathFromRoot=#{@path_from_root})" end