index
:
mruby
master
mruby2-draft
removing-y-tab-c
revert-5391-throw
stable
web_export
Lightweight Ruby
realtradam
summary
refs
log
tree
commit
diff
homepage
log msg
author
committer
range
path:
root
/
src
/
class.c
Age
Commit message (
Expand
)
Author
2017-12-06
`mrb_method_search_vm()` should gives the defined class.
Yukihiro "Matz" Matsumoto
2017-11-20
Add `MRB_METHOD_TABLE_INLINE` option.
Yukihiro "Matz" Matsumoto
2017-11-04
Merge branch 'mrb_without_float' of https://github.com/pandax381/mruby into p...
Yukihiro "Matz" Matsumoto
2017-11-04
Reimplement `block_given?`; ref #3841
Yukihiro "Matz" Matsumoto
2017-11-04
Merge branch 'master' of github.com:mruby/mruby
YAMAMOTO Masaya
2017-10-28
Heavily refactored how lexical scope links are implemented; fix #3821
Yukihiro "Matz" Matsumoto
2017-10-19
Add `main.define_method`
Yukihiro "Matz" Matsumoto
2017-10-17
Remove `mrb_vm_get_argc`; ref #3826
Yukihiro "Matz" Matsumoto
2017-10-11
Add MRB_WITHOUT_FLOAT
YAMAMOTO Masaya
2017-10-10
correctly handle *splat arguments in mrb_get_argc, also add mrb_vm_get_argc a...
Tomasz Dąbrowski
2017-09-27
fix: src\class.c(949): warning C4244: '=': conversion from 'mrb_int' to 'int'...
Tomasz Dąbrowski
2017-09-27
fix: src\class.c(949): warning C4244: '=': conversion from 'mrb_int' to 'int'...
Tomasz Dąbrowski
2017-09-27
fix: src\class.c(583): warning C4244: '=': conversion from 'mrb_int' to 'int'...
Tomasz Dąbrowski
2017-09-06
Avoid calling `mrb_funcall` to invoke `#initialize` from `Class.new`.
Yukihiro "Matz" Matsumoto
2017-09-04
Call `initialize` only when it's not empty.
Yukihiro "Matz" Matsumoto
2017-09-01
Update method cache clearing.
Yukihiro "Matz" Matsumoto
2017-08-26
Check for ability to skip optional argument parsing.
Yukihiro "Matz" Matsumoto
2017-08-22
Added method cache.
Yukihiro "Matz" Matsumoto
2017-08-22
`mrb_obj_respond_to` to use `mrb_method_search_vm`.
Yukihiro "Matz" Matsumoto
2017-08-18
Separate `mrb_str_buf_new` and `mrb_str_new_capa`.
Yukihiro "Matz" Matsumoto
2017-08-01
Better class name management.
Yukihiro "Matz" Matsumoto
2017-08-01
Cosmetic changes (removing spaces before `*` in return types).
Yukihiro "Matz" Matsumoto
2017-08-01
Move naming unnamed classes/modules
Yukihiro "Matz" Matsumoto
2017-08-01
Implements `Module::nesting' (15.2.2.3.2); ref #600, #3200
Yukihiro "Matz" Matsumoto
2017-07-28
Extended Module#const_get to support class paths
Christopher Aue
2017-07-27
Embed small size array elements in the heap.
Yukihiro "Matz" Matsumoto
2017-07-19
Avoid constant-set duplication; ref #3747
Yukihiro "Matz" Matsumoto
2017-07-18
Fixed Module#to_s and #name for #const_set modules
Christopher Aue
2017-07-12
Update `mrb_get_args()` document.
Yukihiro "Matz" Matsumoto
2017-07-12
Add "*!" argument specifier to avoid stack copying.
Yukihiro "Matz" Matsumoto
2017-06-27
Copy argv from VM stack to avoid use-after-free; fix #3722
Yukihiro "Matz" Matsumoto
2017-05-30
Avoid using C++ style comments (//).
Yukihiro "Matz" Matsumoto
2017-05-29
Mark proc objects representing methods as internal objects; fix #3621
Yukihiro "Matz" Matsumoto
2017-05-26
Add new range check macro FIXABLE_FLOAT(); ref #3652
Yukihiro "Matz" Matsumoto
2017-04-21
Add missing `arg_i++` to fix bug of `s!` in mrb_get_args.
take_cheeze
2017-04-12
Refactor check before `mrb_class_ptr()`; ref #3602
Yukihiro "Matz" Matsumoto
2017-04-12
The attached object may not be a class; fix #3602
Yukihiro "Matz" Matsumoto
2017-04-06
Get constant of parent class even if child class is defined in signleton clas...
Kouichi Nakanishi
2017-04-03
Unify `else` clause style
Yukihiro "Matz" Matsumoto
2017-04-03
Remove spaces around parens
Yukihiro "Matz" Matsumoto
2017-03-19
`super class error` formats the superclass by `inspect`; rerf #3515
Yukihiro "Matz" Matsumoto
2017-03-18
Need to setup singleton_class chain; fix #3509
Yukihiro "Matz" Matsumoto
2017-03-16
Singleton classes do not have outer class set; fix #3505
Yukihiro "Matz" Matsumoto
2017-03-10
Raise special Exception when exception class is redefined; fix #3493
Yukihiro "Matz" Matsumoto
2017-02-15
Move #__id__ to BasicObject; ref #3417
Yukihiro "Matz" Matsumoto
2017-02-15
Move #instance_eval to BasicObject; ref #3417
Yukihiro "Matz" Matsumoto
2017-02-15
Move #__send__ to BasicObject; ref #3417
Yukihiro "Matz" Matsumoto
2017-02-15
Move #== and #!= to BasicObject; ref #3417
Yukihiro "Matz" Matsumoto
2017-02-15
Move BasicObject#method_missing to Kernel#method_missing; ref #3417
Yukihiro "Matz" Matsumoto
2017-02-15
Avoid calling hook methods if they are not overridden.
Yukihiro "Matz" Matsumoto
[next]