Class: Byebug::InfoCommand::LineCommand

Inherits:
Command
  • Object
show all
Defined in:
lib/byebug/commands/info/line.rb

Overview

Information about current location

Instance Attribute Summary

Attributes inherited from Command

#processor

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Command

#arguments, columnize, #context, #frame, help, #initialize, match, to_s

Methods included from Helpers::StringHelper

#camelize, #deindent, #prettify

Constructor Details

This class inherits a constructor from Byebug::Command

Class Method Details

.descriptionObject



18
19
20
21
22
23
24
# File 'lib/byebug/commands/info/line.rb', line 18

def self.description
  <<-DESCRIPTION
    inf[o] l[ine]

    #{short_description}
  DESCRIPTION
end

.regexpObject



14
15
16
# File 'lib/byebug/commands/info/line.rb', line 14

def self.regexp
  /^\s* l(?:ine)? \s*$/x
end

.short_descriptionObject



26
27
28
# File 'lib/byebug/commands/info/line.rb', line 26

def self.short_description
  "Line number and file name of current position in source file."
end

Instance Method Details

#executeObject



30
31
32
# File 'lib/byebug/commands/info/line.rb', line 30

def execute
  puts "Line #{frame.line} of \"#{frame.file}\""
end