mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* object.c (rb_obj_ivar_set): RDoc updated according to a
suggestion from Brian Candler <B.Candler AT pobox.com>. [ruby-core:10469] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@11962 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
ed3fdff77e
commit
618510d30c
3 changed files with 15 additions and 7 deletions
|
|
@ -1,3 +1,9 @@
|
|||
Sat Mar 3 16:07:02 2007 Akinori MUSHA <knu@iDaemons.org>
|
||||
|
||||
* object.c (rb_obj_ivar_set): RDoc updated according to a
|
||||
suggestion from Brian Candler <B.Candler AT pobox.com>.
|
||||
[ruby-core:10469]
|
||||
|
||||
Thu Mar 1 21:38:07 2007 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* parse.y (stmt, arg): should not omit lhs of OP_ASGN1 even if
|
||||
|
|
|
|||
10
object.c
10
object.c
|
|
@ -1966,10 +1966,12 @@ rb_obj_public_methods(argc, argv, obj)
|
|||
/*
|
||||
* call-seq:
|
||||
* obj.instance_variable_get(symbol) => obj
|
||||
*
|
||||
* Returns the value of the given instance variable (or throws a
|
||||
* <code>NameError</code> exception). The <code>@</code> part of the
|
||||
* variable name should be included for regular instance variables
|
||||
*
|
||||
* Returns the value of the given instance variable, or nil if the
|
||||
* instance variable is not set. The <code>@</code> part of the
|
||||
* variable name should be included for regular instance
|
||||
* variables. Throws a <code>NameError</code> exception if the
|
||||
* supplied symbol is not valid as an instance variable name.
|
||||
*
|
||||
* class Fred
|
||||
* def initialize(p1, p2)
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
#define RUBY_VERSION "1.8.6"
|
||||
#define RUBY_RELEASE_DATE "2007-03-01"
|
||||
#define RUBY_RELEASE_DATE "2007-03-03"
|
||||
#define RUBY_VERSION_CODE 186
|
||||
#define RUBY_RELEASE_CODE 20070301
|
||||
#define RUBY_RELEASE_CODE 20070303
|
||||
#define RUBY_PATCHLEVEL 5000
|
||||
|
||||
#define RUBY_VERSION_MAJOR 1
|
||||
|
|
@ -9,7 +9,7 @@
|
|||
#define RUBY_VERSION_TEENY 6
|
||||
#define RUBY_RELEASE_YEAR 2007
|
||||
#define RUBY_RELEASE_MONTH 3
|
||||
#define RUBY_RELEASE_DAY 1
|
||||
#define RUBY_RELEASE_DAY 3
|
||||
|
||||
#ifdef RUBY_EXTERN
|
||||
RUBY_EXTERN const char ruby_version[];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue