summaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)Author
2014-05-25Merge pull request #2312 from take-cheeze/kind_ofYukihiro "Matz" Matsumoto
Use `assert_kind_of` instead in `Proc#inspect` test.
2014-05-25Merge pull request #2318 from yui-knk/fix-typoYukihiro "Matz" Matsumoto
fix typo.
2014-05-25Replace assert_true with assert_equal.yui-knk
2014-05-25Change to use assert method.yui-knk
2014-05-25fix typo.yui-knk
2014-05-25Exception#exception fix testksss
Exception.exception is not call Exception#exception. Test for Exception#exception should call Exception#exception method.
2014-05-25Fix assert_equal argument order in test/t/proc.rbJun Hiroe
2014-05-24Use `assert_*` method instead of using result value.take_cheeze
Use `do ... end` for test block.
2014-05-24Use `assert_kind_of` instead.take_cheeze
2014-05-24Merge pull request #2310 from ksss/class-segvYukihiro "Matz" Matsumoto
Should not call inherited method when class nothing
2014-05-23Should not call inherited methodksss
when class nothing
2014-05-23Merge pull request #2305 from take-cheeze/doc_updateYukihiro "Matz" Matsumoto
Update C++ extensions in build instruction document.
2014-05-22Update C++ extensions in build instruction document.take_cheeze
2014-05-22call Class#initialize from Class.new; ref ISO 15.2.3.3.1Yukihiro "Matz" Matsumoto
2014-05-22allocate object after mrb_get_args()Yukihiro "Matz" Matsumoto
2014-05-22Merge pull request #2304 from ksss/class-newYukihiro "Matz" Matsumoto
Class.new do not call `class_eval'
2014-05-22Merge pull request #2303 from ksss/module-initializeYukihiro "Matz" Matsumoto
Module#initialize set created object for block argument
2014-05-22Merge branch 'master' of github.com:mruby/mrubyYukihiro "Matz" Matsumoto
2014-05-22Merge pull request #2282 from yui-knk/check-before-mallocYukihiro "Matz" Matsumoto
Change range_check before mrb_obj_alloc.
2014-05-22git push origin masterMerge branch 'take-cheeze-refactor_dump'Yukihiro "Matz" Matsumoto
2014-05-22remove unnecessary assignment; ref #2301Yukihiro "Matz" Matsumoto
2014-05-22Merge pull request #2286 from suzukaze/refactor-kernelYukihiro "Matz" Matsumoto
Use boolean macro in kernel.c
2014-05-22Class.new add test caseksss
2014-05-22Class.new do not call `class_eval'ksss
and set self for block argument
2014-05-21Module#initialize set created objectksss
for block argument
2014-05-21Reduce children filenames listing.take_cheeze
It is executed per each debug filenames in irep to same ireps(children).
2014-05-21Reduce filename table creation in irep dumping to once.take_cheeze
2014-05-21Merge pull request #2301 from mimaki/fix-load-mrb-segvYukihiro "Matz" Matsumoto
mrb_load_irep_file() caused SEGV
2014-05-21direct invocation of instance_evalYukihiro "Matz" Matsumoto
2014-05-21Check mrbc_context is nullmimaki
2014-05-21direct invocation of module_eval; ref #2298Yukihiro "Matz" Matsumoto
2014-05-21break in blocks cannot cross C function boundaries; fix #2298Yukihiro "Matz" Matsumoto
2014-05-20Merge pull request #2300 from yui-knk/fix-commentYukihiro "Matz" Matsumoto
Correct comment in exception test.
2014-05-20Merge pull request #2299 from take-cheeze/cc_extYukihiro "Matz" Matsumoto
Support extension '.cc' in source code listing.
2014-05-20Correct comment in exception test.yui-knk
2014-05-20Support extension '.cc' in globbing.take_cheeze
2014-05-20Merge pull request #2295 from ksss/module-initializeYukihiro "Matz" Matsumoto
Implement Module#initialize (15.2.2.4.31)
2014-05-20move prototype of mrb_format() from error.h to mruby.h; ref #2274Yukihiro "Matz" Matsumoto
2014-05-20Merge branch 'master' of github.com:mruby/mrubyYukihiro "Matz" Matsumoto
2014-05-20update raise in ensure testYukihiro "Matz" Matsumoto
2014-05-20correct comment; ref #2297Yukihiro "Matz" Matsumoto
2014-05-20Merge branch 'add-exception-test' of https://github.com/yui-knk/mruby into ↵Yukihiro "Matz" Matsumoto
yui-knk-add-exception-test
2014-05-20Merge pull request #2296 from take-cheeze/core_local_varsYukihiro "Matz" Matsumoto
Move `Kernel.local_variables` to core.
2014-05-20Add 'Raise in rescue' test to exception.yui-knk
2014-05-19Move `Kernel.local_variables` to core.take_cheeze
2014-05-19mrb_include_module support class and moduleksss
that not have methods each other
2014-05-19Implement Module#initialize (15.2.2.4.31)ksss
2014-05-19UINT16_MAX as symbol length is reserved; ref #2294Yukihiro "Matz" Matsumoto
2014-05-19allow NULL (no variable) in lvar section of mrb format; fix #2294Yukihiro "Matz" Matsumoto
This fix use UINT16_MAX for NULL symbol tag, that means maximum symbol length is not UINT16_MAX-1.
2014-05-19reimplement Range#size using double with fixing corner cases; ref #2293Yukihiro "Matz" Matsumoto