Sha256: 9eae36f259fa28df646107a77fb8188ba83c50bde7d8ab0fbd0cd3cdc428e779
Contents?: true
Size: 707 Bytes
Versions: 6770
Compression:
Stored size: 707 Bytes
Contents
# frozen_string_literal: true require_relative "../../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 <<-DESCRIPTION v[ar] l[ocal] #{short_description} DESCRIPTION end def self.short_description "Shows local variables in current scope." end def execute var_local end end end end
Version data entries
6,770 entries across 6,767 versions & 30 rubygems