Object
# File lib/parse_tree_extensions.rb, line 24 def to_ruby sexp = self.to_sexp Ruby2Ruby.new.process sexp end
# File lib/parse_tree_extensions.rb, line 13 def to_sexp require 'parse_tree' require 'unified_ruby' parser = ParseTree.new(false) unifier = Unifier.new with_class_and_method_name do |klass, method| old_sexp = parser.parse_tree_for_method(klass, method) unifier.process(old_sexp) end end
# File lib/parse_tree_extensions.rb, line 2 def with_class_and_method_name if self.inspect =~ /<Method: (.*)\#(.*)>/ then klass = eval $1 method = $2.intern raise "Couldn't determine class from #{self.inspect}" if klass.nil? return yield(klass, method) else raise "Can't parse signature: #{self.inspect}" end end
Generated with the Darkfish Rdoc Generator 2.