class RPath::Root

Evaluates to the root of the graph.

Public Instance Methods

to_s() click to toggle source

@return [String]

# File lib/rpath/expressions.rb, line 146
def to_s
  'root'
end

Private Instance Methods

do_eval(graph, adapter) click to toggle source
# File lib/rpath/expressions.rb, line 152
def do_eval(graph, adapter)
  adapter.root graph
end