# File lib/ramaze/snippets/binding/locals.rb, line 11
      def locals
        ::Kernel::eval '
        local_variables.inject({}){|h,v|
          k = v.to_s
          h.merge!(k => eval(k))
        }', self
      end