summaryrefslogtreecommitdiff
path: root/tool/parse.rb
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-01-29 05:16:38 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-01-29 05:16:38 +0000
commit024c694c9519cdeffdc410b137db87b33d41a0b3 (patch)
treed39f9c67e6041bde122bfb1f61ff1d7ab5b4b67a /tool/parse.rb
parentf74039ec5148f8c2015a5846574c9b853959f785 (diff)
* tool/parse.rb: replace YARVCore by VM class.
http://d.hatena.ne.jp/ysano2005/20070128 git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11586 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'tool/parse.rb')
-rw-r--r--tool/parse.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/tool/parse.rb b/tool/parse.rb
index 15e7f77494..bf0bbc30af 100644
--- a/tool/parse.rb
+++ b/tool/parse.rb
@@ -6,7 +6,7 @@ puts '# ' + '-' * 70
puts $str
puts '# ' + '-' * 70
-$parsed = YARVCore::InstructionSequence.compile_file($file)
+$parsed = VM::InstructionSequence.compile_file($file)
puts "# disasm result: "
puts '# ' + '-' * 70
puts $parsed.disasm