1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* lib/debug.rb, lib/profile.rb: fix to use RubyVM.

* lib/rdoc/parsers/parse_c.rb: ditto.



git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@17958 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
ko1 2008-07-08 13:28:57 +00:00
parent 92afa05222
commit 7e16f9e777
4 changed files with 9 additions and 9 deletions

View file

@ -1,3 +1,9 @@
Tue Jul 8 22:28:25 2008 Koichi Sasada <ko1@atdot.net>
* lib/debug.rb, lib/profile.rb: fix to use RubyVM.
* lib/rdoc/parsers/parse_c.rb: ditto.
Tue Jul 8 21:45:22 2008 Yusuke Endoh <mame@tsg.ne.jp>
* vm.c (rb_vm_mark): mark the last element of special_exceptions.
@ -9,12 +15,6 @@ Tue Jul 8 19:55:40 2008 Masaki Suketa <masaki.suketa@nifty.ne.jp>
* test/win32ole/test_win32ole_event.rb: ditto
Tue Jul 8 13:44:01 2008 Koichi Sasada <ko1@atdot.net>
* lib/debug.rb, lib/profile.rb: fix to use RubyVM.
* lib/rdoc/parsers/parse_c.rb: ditto.
Tue Jul 8 13:38:22 2008 Koichi Sasada <ko1@atdot.net>
* compile.h: fix to skip inserting a trace insn.

View file

@ -904,7 +904,7 @@ stdout.printf "Emacs support available.\n\n"
set_trace_func proc { |event, file, line, id, binding, klass, *rest|
DEBUGGER__.context.trace_func event, file, line, id, binding, klass
}
VM::InstructionSequence.compile_option = {
RubyVM::InstructionSequence.compile_option = {
trace_instruction: true
}
end

View file

@ -1,6 +1,6 @@
require 'profiler'
VM::InstructionSequence.compile_option = {
RubyVM::InstructionSequence.compile_option = {
:trace_instruction => true,
:specialized_instruction => false
}

View file

@ -36,7 +36,7 @@ module RDoc
"rb_cTime" => "Time",
"rb_cTrueClass" => "TrueClass",
"rb_cStruct" => "Struct",
"rb_cVM" => "VM",
"rb_cRubyVM" => "RubyVM",
"rb_eException" => "Exception",
"rb_eStandardError" => "StandardError",
"rb_eSystemExit" => "SystemExit",