Sha256: fa5f73d2ce79ac39ae0248d480415c7f7fd5c5d996d3cc19766b121e18e28edd
Contents?: true
Size: 652 Bytes
Versions: 26
Compression:
Stored size: 652 Bytes
Contents
require 'byebug/helpers/var' module Byebug # # Reopens the +var+ command to define the +local+ subcommand # class VarCommand < Command # # Shows local variables in current scope # class LocalCommand < Command include Helpers::VarHelper self.allow_in_post_mortem = true def self.regexp /^\s* l(?:ocal)? \s*$/x end def self.description <<-EOD v[ar] l[ocal] #{short_description} EOD end def self.short_description 'Shows local variables in current scope.' end def execute var_local end end end end
Version data entries
26 entries across 25 versions & 3 rubygems