* enumerator.c, include/ruby/ruby.h: Export rb_cEnumerator.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@16107 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
3537b97bc1
commit
d657d4feb3
@ -1,3 +1,7 @@
|
|||||||
|
Sun Apr 20 21:00:21 2008 Akinori MUSHA <knu@iDaemons.org>
|
||||||
|
|
||||||
|
* enumerator.c, include/ruby/ruby.h: Export rb_cEnumerator.
|
||||||
|
|
||||||
Sun Apr 20 20:47:50 2008 Akinori MUSHA <knu@iDaemons.org>
|
Sun Apr 20 20:47:50 2008 Akinori MUSHA <knu@iDaemons.org>
|
||||||
|
|
||||||
* enumerator.c: Resolve the method every time an enumeration
|
* enumerator.c: Resolve the method every time an enumeration
|
||||||
|
@ -21,7 +21,7 @@
|
|||||||
* A class which provides a method `each' to be used as an Enumerable
|
* A class which provides a method `each' to be used as an Enumerable
|
||||||
* object.
|
* object.
|
||||||
*/
|
*/
|
||||||
static VALUE rb_cEnumerator;
|
VALUE rb_cEnumerator;
|
||||||
static VALUE sym_each;
|
static VALUE sym_each;
|
||||||
|
|
||||||
VALUE rb_eStopIteration;
|
VALUE rb_eStopIteration;
|
||||||
|
@ -854,6 +854,7 @@ RUBY_EXTERN VALUE rb_cCont;
|
|||||||
RUBY_EXTERN VALUE rb_cDir;
|
RUBY_EXTERN VALUE rb_cDir;
|
||||||
RUBY_EXTERN VALUE rb_cData;
|
RUBY_EXTERN VALUE rb_cData;
|
||||||
RUBY_EXTERN VALUE rb_cFalseClass;
|
RUBY_EXTERN VALUE rb_cFalseClass;
|
||||||
|
RUBY_EXTERN VALUE rb_cEnumerator;
|
||||||
RUBY_EXTERN VALUE rb_cFile;
|
RUBY_EXTERN VALUE rb_cFile;
|
||||||
RUBY_EXTERN VALUE rb_cFixnum;
|
RUBY_EXTERN VALUE rb_cFixnum;
|
||||||
RUBY_EXTERN VALUE rb_cFloat;
|
RUBY_EXTERN VALUE rb_cFloat;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user