In Files

Parent

Printer

Public Class Methods

new() click to toggle source
# File lib/rest.rb, line 345
def initialize
  @missing = Hash.new
end

Public Instance Methods

do_finish() click to toggle source
# File lib/rest.rb, line 367
def do_finish
end
do_prepare() click to toggle source
# File lib/rest.rb, line 364
def do_prepare
end
do_print(node) click to toggle source
# File lib/rest.rb, line 359
def do_print node
  method = "print_" + node.class.to_s.downcase
  send method, node
end
method_missing(symbol, *args) click to toggle source
# File lib/rest.rb, line 370
def method_missing symbol, *args
  if ( !@missing[ symbol ] )
    @missing[ symbol ] = true
    STDERR.puts "Warning: #{self.class} doesn't support '#{symbol}'."
  end
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.