Class: Byebug::LinetraceSetting

Inherits:
Setting
  • Object
show all
Defined in:
lib/byebug/settings/linetrace.rb

Overview

Setting to enable/disable linetracing.

Constant Summary

Constants inherited from Setting

Setting::DEFAULT

Instance Method Summary collapse

Methods inherited from Setting

[], []=, boolean?, #boolean?, exists?, find, #help, help, help_all, #initialize, integer?, #integer?, load, settings, #to_s, #to_sym

Constructor Details

This class inherits a constructor from Byebug::Setting

Instance Method Details



6
7
8
# File 'lib/byebug/settings/linetrace.rb', line 6

def banner
  'Enable line execution tracing'
end

#valueObject



14
15
16
# File 'lib/byebug/settings/linetrace.rb', line 14

def value
  Byebug.tracing?
end

#value=(v) ⇒ Object



10
11
12
# File 'lib/byebug/settings/linetrace.rb', line 10

def value=(v)
  Byebug.tracing = v
end