Skip to content

Commit 024c694

Browse files
author
matz
committed
* 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
1 parent f74039e commit 024c694

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

ChangeLog

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
Mon Jan 29 14:14:35 2007 Yukihiro Matsumoto <matz@ruby-lang.org>
2+
3+
* tool/parse.rb: replace YARVCore by VM class.
4+
http://d.hatena.ne.jp/ysano2005/20070128
5+
16
Sun Jan 28 08:41:49 2007 Masaki Suketa <masaki.suketa@nifty.ne.jp>
27

38
* ext/win32ole/win32ole.c: refactoring.

tool/parse.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
puts $str
77
puts '# ' + '-' * 70
88

9-
$parsed = YARVCore::InstructionSequence.compile_file($file)
9+
$parsed = VM::InstructionSequence.compile_file($file)
1010
puts "# disasm result: "
1111
puts '# ' + '-' * 70
1212
puts $parsed.disasm

version.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
#define RUBY_VERSION "1.9.0"
2-
#define RUBY_RELEASE_DATE "2007-01-28"
2+
#define RUBY_RELEASE_DATE "2007-01-29"
33
#define RUBY_VERSION_CODE 190
4-
#define RUBY_RELEASE_CODE 20070128
4+
#define RUBY_RELEASE_CODE 20070129
55
#define RUBY_PATCHLEVEL 0
66

77
#define RUBY_VERSION_MAJOR 1
88
#define RUBY_VERSION_MINOR 9
99
#define RUBY_VERSION_TEENY 0
1010
#define RUBY_RELEASE_YEAR 2007
1111
#define RUBY_RELEASE_MONTH 1
12-
#define RUBY_RELEASE_DAY 28
12+
#define RUBY_RELEASE_DAY 29
1313

1414
RUBY_EXTERN const char ruby_version[];
1515
RUBY_EXTERN const char ruby_release_date[];

0 commit comments

Comments
 (0)