本文简要介绍ruby语言中 Fiber.backtrace_locations
的用法。
用法
backtrace_locations → array
backtrace_locations(start) → array
backtrace_locations(start, count) → array
backtrace_locations(start..end) → array
与 backtrace
类似,但将执行堆栈的每一行作为 Thread::Backtrace::Location
返回。接受与 backtrace
相同的参数。
f = Fiber.new { Fiber.yield }
f.resume
loc = f.backtrace_locations.first
loc.label #=> "yield"
loc.path #=> "test.rb"
loc.lineno #=> 1
相关用法
- Ruby Fiber.backtrace用法及代码示例
- Ruby Fiber.schedule用法及代码示例
- Ruby Fiber.transfer用法及代码示例
- Ruby Fiber.new用法及代码示例
- Ruby Fiber.scheduler用法及代码示例
- Ruby Fiber类用法及代码示例
- Ruby FiberError类用法及代码示例
- Ruby File.identical?用法及代码示例
- Ruby FileUtils.mkdir用法及代码示例
- Ruby FileUtils.compare_file用法及代码示例
- Ruby FileUtils.options_of用法及代码示例
- Ruby File.dirname用法及代码示例
- Ruby FileUtils.ln_s用法及代码示例
- Ruby Fiddle.dlwrap用法及代码示例
- Ruby File.directory?用法及代码示例
- Ruby FileUtils.install用法及代码示例
- Ruby File.link用法及代码示例
- Ruby FileUtils.chown_R用法及代码示例
- Ruby File.expand_path用法及代码示例
- Ruby FileUtils.cp_lr用法及代码示例
- Ruby File.lstat用法及代码示例
- Ruby File.umask用法及代码示例
- Ruby FileUtils.rmdir用法及代码示例
- Ruby File.absolute_path?用法及代码示例
- Ruby FileUtils.rm_rf用法及代码示例
注:本文由纯净天空筛选整理自ruby-lang.org大神的英文原创作品 Fiber.backtrace_locations。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。