Method: Thread#__stack_method_names
- Defined in:
- lib/mdbe/database_views/thread.rb
#__stack_method_names ⇒ Object
90 91 92 93 94 95 96 97 98 99 |
# File 'lib/mdbe/database_views/thread.rb', line 90 def __stack_method_names methods = [] (1..__local_stack_depth).each do |idx| method = __local_method_at(idx) methods.push(method.__description_for_stack) if method != nil # TODO: why do we need to check for nil here? end methods end |