From 2a97015041f7276a84eba777da301c926bd9630d Mon Sep 17 00:00:00 2001 From: zzak Date: Mon, 4 Feb 2013 17:59:52 +0000 Subject: * lib/tracer.rb: Move class overview definition and reformat git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@39044 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- lib/tracer.rb | 38 +++++++++++++++++--------------------- 1 file changed, 17 insertions(+), 21 deletions(-) (limited to 'lib') diff --git a/lib/tracer.rb b/lib/tracer.rb index 0ad8ce5538..4266abf1b6 100644 --- a/lib/tracer.rb +++ b/lib/tracer.rb @@ -1,10 +1,14 @@ +#-- +# $Release Version: 0.3$ +# $Revision: 1.12 $ +require "thread" + ## -# = Tracer +# Outputs a source level execution trace of a Ruby program. # -# Tracer outputs a source level execution trace of a Ruby program. It does -# this by registering an event handler with Kernel#set_trace_func -# for processing incoming events. It also provides methods for filtering -# unwanted trace output (see Tracer.add_filter, Tracer.on, and Tracer.off). +# It does this by registering an event handler with Kernel#set_trace_func for +# processing incoming events. It also provides methods for filtering unwanted +# trace output (see Tracer.add_filter, Tracer.on, and Tracer.off). # # == Example # @@ -42,27 +46,19 @@ # # Symbol table used for displaying incoming events: # -# }:: call a C-language routine -# {:: return from a C-language routine -# >:: call a Ruby method -# C:: start a class or module definition -# E:: finish a class or module definition -# -:: execute code on a new line -# ^:: raise an exception -# <:: return from a Ruby method +# +}+:: call a C-language routine +# +{+:: return from a C-language routine +# +>+:: call a Ruby method +# +C+:: start a class or module definition +# +E+:: finish a class or module definition +# +-+:: execute code on a new line +# +^+:: raise an exception +# +<+:: return from a Ruby method # # == Copyright # # by Keiju ISHITSUKA(keiju@ishitsuka.com) # -#-- -# $Release Version: 0.3$ -# $Revision: 1.12 $ -require "thread" - -# -# tracer main class -# class Tracer class << self # display additional debug information (defaults to false) -- cgit v1.2.3