skandhas
|
25a02a5b8b
|
add comment for Module#include?
|
2012-11-24 16:26:36 +08:00 |
|
skandhas
|
59035eb33d
|
add Module#include?
|
2012-11-24 16:04:11 +08:00 |
|
skandhas
|
44f240f433
|
fix lost const variable in class BasicObject
|
2012-11-19 17:45:29 +08:00 |
|
Yukihiro Matz Matsumoto
|
a5d7ebbad0
|
prepare metaclass of metaclass when retrieving by singleton_class(); close #540
|
2012-11-16 11:34:16 +09:00 |
|
Yukihiro Matz Matsumoto
|
8856c89246
|
should print SCLASS as modules and classes
|
2012-11-14 23:56:29 +09:00 |
|
Yukihiro Matz Matsumoto
|
0f6c1a034b
|
zero initialize singleton_class iv
|
2012-11-14 23:55:06 +09:00 |
|
skandhas
|
611cfee3c2
|
modify aspec
|
2012-11-12 20:43:10 +08:00 |
|
skandhas
|
1cc44cfd78
|
add Module#class_variables
|
2012-11-09 23:00:24 +08:00 |
|
nkshigeru
|
9447e823a8
|
avoid local variable declaration in the middle
|
2012-11-08 11:49:40 +09:00 |
|
Akira Yumiyama
|
03b74a6c48
|
Ruby and align the behavior.
|
2012-11-07 17:29:59 +09:00 |
|
Akira Yumiyama
|
94520ea797
|
fix 'undefined method' error message.
|
2012-11-07 17:10:04 +09:00 |
|
Yukihiro Matz Matsumoto
|
d2d2e9f5f9
|
add new predicates mrb_string_p(),mrb_array_p(),mrb_hash_p()
|
2012-11-04 05:02:39 +09:00 |
|
Yukihiro Matz Matsumoto
|
051777dc5d
|
replace SYMBOL_P() by mrb_symbol_p()
|
2012-11-04 04:53:25 +09:00 |
|
Yukihiro Matsumoto
|
9f0c59e068
|
FALSE and STRING should not be converted to float for get_args("f"); close #525
|
2012-11-03 01:57:57 +09:00 |
|
Akira Yumiyama
|
e407022b10
|
change the error message (NoMethodError, NameError)
|
2012-10-28 20:20:13 +09:00 |
|
Masaki Muranaka
|
6069a33089
|
mrb_raisef(): new function. Same as previou version of mrb_raise().
mrb_raise(): API modified. It cannot treat variable arguments.
|
2012-10-23 09:42:22 +09:00 |
|
Beoran
|
8949e3c7fb
|
Bugfix for crash if main was extended with a module.
|
2012-10-09 21:45:41 +02:00 |
|
Yukihiro Matsumoto
|
c0ac010b68
|
add Module#inspect; close #453
|
2012-09-06 01:42:53 +09:00 |
|
Yukihiro Matsumoto
|
f9f425ae5f
|
inspect on classes should not cause SEGV
|
2012-09-06 01:41:45 +09:00 |
|
Yukihiro Matsumoto
|
7d02df3016
|
NaN boxing
|
2012-08-14 13:16:34 +09:00 |
|
Yukihiro Matsumoto
|
cda1709a35
|
setjmp in mrb_funcall_with_block if mrb->jmp is empty
|
2012-08-13 21:03:08 +09:00 |
|
Yukihiro Matsumoto
|
1ed39d5c05
|
use TRUE/FALSE instead of 1/0
|
2012-08-13 04:19:24 +09:00 |
|
Yukihiro Matsumoto
|
c9fe903fe1
|
now segmented list can be used as instance variable tables by -DMRB_USE_IV_SEGLIST; we still need to measure the performance and memory consumption
|
2012-08-12 01:59:18 +09:00 |
|
Yukihiro Matsumoto
|
8af5a999bf
|
store :initialize in mrb structure
|
2012-08-08 00:25:35 +09:00 |
|
Yukihiro Matsumoto
|
472d214a71
|
super look-up scheme fixed; close #415
|
2012-08-04 06:44:53 +09:00 |
|
Yukihiro Matsumoto
|
730f53045e
|
define_method to copy block body
|
2012-08-03 20:17:04 +09:00 |
|
Yukihiro Matsumoto
|
77aa261f3b
|
mrb_singleton_class should raise TypeError for immediate objects
|
2012-08-03 19:56:14 +09:00 |
|
Yukihiro Matsumoto
|
f121558f93
|
mrb_define_method_vm should update target_class
|
2012-08-03 19:55:01 +09:00 |
|
Yukihiro Matsumoto
|
6491693d00
|
mrb_get_args("&") gave wrong value
|
2012-08-02 22:03:53 +09:00 |
|
Yukihiro Matsumoto
|
d271bf0aa6
|
make mrb_funcall_argv and mrb_funcall_with_block to take mrb_sym as a method name
|
2012-08-01 13:15:02 +09:00 |
|
Masamitsu MURASE
|
99e2035f42
|
Modify mrb_vm_define_class.
* Check mismatch of superclass.
* Check constant value whose name is specified as a class's name.
|
2012-07-29 14:21:12 +09:00 |
|
Max Anselm
|
ea25912999
|
Undefine new for class rather than instance.
Applies to NilClass, TrueClass, FalseClass, Fixnum, and Float. Add
mrb_undef_class_method for DRYness.
|
2012-07-25 18:22:26 -04:00 |
|
Masamitsu MURASE
|
a4c6b1c75e
|
Remove initialization of mt.
|
2012-07-22 00:35:49 +09:00 |
|
Yukihiro Matsumoto
|
4b9ef5dabe
|
use no malloc in mrb_funcall; close #386
|
2012-07-19 17:45:13 +09:00 |
|
Masaki Muranaka
|
f146fd0397
|
MRB_FUNCALL_ARGC_MAX support. (refs comments in #324).
|
2012-07-18 15:47:57 +09:00 |
|
Masaki Muranaka
|
7bb71a7d58
|
Remove magic numbers in mrb_funcall()
|
2012-07-18 15:26:53 +09:00 |
|
Yukihiro "Matz" Matsumoto
|
4df4a3f0bf
|
Merge pull request #380 from masamitsu-murase/modify_respond_to
Modify return value of 'respond_to?'
|
2012-07-17 16:24:16 -07:00 |
|
Masamitsu MURASE
|
a0c4f8558b
|
Kernel#respond_to? should return false if the method is undefined.
|
2012-07-18 02:17:29 +09:00 |
|
Masamitsu MURASE
|
265aa0b885
|
Undef Class#extend_object.
|
2012-07-18 02:07:42 +09:00 |
|
Yukihiro Matsumoto
|
8ce2af99f3
|
CRuby style inclusion order; close #377
|
2012-07-17 03:31:56 +09:00 |
|
Yukihiro Matsumoto
|
e8ade38104
|
undef append_features for Classes
|
2012-07-17 02:17:16 +09:00 |
|
Yukihiro Matsumoto
|
094fdc4367
|
resolve conflict
|
2012-07-17 02:05:39 +09:00 |
|
Yukihiro Matsumoto
|
526dd09b7a
|
add Module#ancestors 15.2.2.4.9
|
2012-07-17 01:33:40 +09:00 |
|
Masamitsu MURASE
|
ba08a2b9dd
|
Add Module#extend_object and Module#extended.
|
2012-07-17 00:42:35 +09:00 |
|
Yukihiro "Matz" Matsumoto
|
ecf1bc569a
|
Merge pull request #370 from masamitsu-murase/remove_unnecessary_const_set
Remove unnecessary mrb_const_set in class.c.
|
2012-07-15 00:39:06 -07:00 |
|
Yukihiro Matsumoto
|
234b8e853c
|
make class_from_sym static
|
2012-07-15 16:37:23 +09:00 |
|
Masamitsu MURASE
|
8611f96777
|
Remove unnecessary mrb_const_set in class.c.
|
2012-07-14 23:02:48 +09:00 |
|
Yukihiro Matsumoto
|
bbec03bb7a
|
add missing (empty) default for swtch; close #364
|
2012-07-13 14:35:18 +09:00 |
|
Masamitsu MURASE
|
9f814a4e6e
|
Improvement of Module#include.
- Add some methods: append_features, included_methods and included.
- Modify Module#include to call append_features and included.
|
2012-07-07 23:04:09 +09:00 |
|
Yukihiro Matsumoto
|
fbfef55152
|
Module#include should also include included modules; close #340
|
2012-07-05 17:57:23 +09:00 |
|