# File lib/binding_of_caller/rubinius.rb, line 49
    def setup_binding_from_location(location)
      binding = Binding.setup location.variables,
                              location.variables.method,
                              location.constant_scope,
                              location.variables.self,
                              location

      binding.instance_variable_set :@frame_description,
                                   location.describe.gsub("{ } in", "block in")

      binding
    end