Sha256: c5cb34f34c5df37548f6518546c5c58d039c1896737ee7ba2449f8682f96ed5c
Contents?: true
Size: 358 Bytes
Versions: 58
Compression:
Stored size: 358 Bytes
Contents
module Debase class Frame def initialize(location) @location = location end def binding @binding ||= Binding.setup(@location.variables, @location.method, @location.constant_scope) end def line @location.line end def file @location.file end def self @location.receiver end end end
Version data entries
58 entries across 47 versions & 3 rubygems