mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* vm_trace.c: [DOC] Fix TracePoint return values in examples
Based on a patch by @sho-h [Fixes GH-373] https://github.com/ruby/ruby/pull/373 git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@42386 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
8d564597fa
commit
f089ea1cd9
2 changed files with 11 additions and 5 deletions
|
@ -1,3 +1,9 @@
|
|||
Mon Aug 5 22:23:59 2013 Zachary Scott <e@zzak.io>
|
||||
|
||||
* vm_trace.c: [DOC] Fix TracePoint return values in examples
|
||||
Based on a patch by @sho-h [Fixes GH-373]
|
||||
https://github.com/ruby/ruby/pull/373
|
||||
|
||||
Mon Aug 5 17:38:15 2013 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* win32/win32.c (rb_w32_write_console): use MultiByteToWideChar() for
|
||||
|
|
10
vm_trace.c
10
vm_trace.c
|
@ -1159,10 +1159,10 @@ rb_tracepoint_new(VALUE target_thval, rb_event_flag_t events, void (*func)(VALUE
|
|||
* trace = TracePoint.new(:call) do |tp|
|
||||
* p [tp.lineno, tp.defined_class, tp.method_id, tp.event]
|
||||
* end
|
||||
* #=> #<TracePoint:0x007f17372cdb20>
|
||||
* #=> #<TracePoint:disabled>
|
||||
*
|
||||
* trace.enable
|
||||
* #=> #<TracePoint:0x007f17372cdb20>
|
||||
* #=> false
|
||||
*
|
||||
* puts "Hello, TracePoint!"
|
||||
* # ...
|
||||
|
@ -1302,10 +1302,10 @@ Init_vm_trace(void)
|
|||
* trace = TracePoint.new(:raise) do |tp|
|
||||
* p [tp.lineno, tp.event, tp.raised_exception]
|
||||
* end
|
||||
* #=> #<TracePoint:0x007f786a452448>
|
||||
* #=> #<TracePoint:disabled>
|
||||
*
|
||||
* trace.enable
|
||||
* #=> #<TracePoint:0x007f786a452448>
|
||||
* #=> false
|
||||
*
|
||||
* 0 / 0
|
||||
* #=> [5, :raise, #<ZeroDivisionError: divided by 0>]
|
||||
|
@ -1349,7 +1349,7 @@ Init_vm_trace(void)
|
|||
* automatically.
|
||||
*
|
||||
* trace = TracePoint.trace(:call) { |tp| [tp.lineno, tp.event] }
|
||||
* #=> #<TracePoint:0x007f786a452448>
|
||||
* #=> #<TracePoint:enabled>
|
||||
*
|
||||
* trace.enabled? #=> true
|
||||
*/
|
||||
|
|
Loading…
Reference in a new issue