summaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)Author
2014-02-05disable LocalJumpError test since the code causes SyntaxError (not ↵Yukihiro "Matz" Matsumoto
LocalJumpError) on CRuby
2014-02-05Fiber.new{break} caused SEGVYukihiro "Matz" Matsumoto
2014-02-04better codedump formatYukihiro "Matz" Matsumoto
2014-02-04Merge pull request #1682 from mattn/remove_warningYukihiro "Matz" Matsumoto
Remove warning
2014-02-04Remove warningmattn
2014-02-04fibers cannot cross C function boundary; close #1680Yukihiro "Matz" Matsumoto
2014-02-02Merge pull request #1678 from iij/float-nan-pYukihiro "Matz" Matsumoto
add Float#nan?
2014-02-03add Float#nan?Tomoyuki Sahara
2014-01-31Merge pull request #1675 from h2so5/node-splat-codegenYukihiro "Matz" Matsumoto
fix NODE_SPLAT codegen
2014-02-01fix NODE_SPLAT codegenh2so5
2014-01-31Merge pull request #1673 from cremno/rework-objspace-gcYukihiro "Matz" Matsumoto
rework mruby-objectspace and gc.[ch]
2014-01-31rework mruby-objectspace and gc.[ch]cremno
- functions should have C linkage (for C++ code) - add prefix to each_object_callback - use more appropriate variable types / initialization - ObjectSpace::count_objects has 1 opt. arg. - prefer mrb_intern_lit to mrb_intern_cstr for str. lit. - mruby/value.h is included by mruby.h - adjust coding style
2014-01-31remove conflictYukihiro "Matz" Matsumoto
2014-01-31Merge pull request #1671 from cremno/extern-cleanupYukihiro "Matz" Matsumoto
clean up external symbols
2014-01-31Merge pull request #1669 from cremno/copyright-2014Yukihiro "Matz" Matsumoto
update copyright year
2014-01-31Merge pull request #1668 from cremno/etc-c-cleanupYukihiro "Matz" Matsumoto
etc.c: small cleanup
2014-01-30Merge pull request #1670 from cremno/remove-mrb_str_format-declarationYukihiro "Matz" Matsumoto
remove mrb_str_format declaration
2014-01-31reindent parse.yh2so5
2014-01-31add missing declaration of mrb_str_formatcremno
2014-01-31clean up external symbolscremno
remove unused and unneeded: - sysexit_status - type (a global variable) add mrb_ prefix to: - codedump_all - class_instance_method_list - parser_dump make various functions static, incl.: - yyparse - make_exception
2014-01-30mruby.h: remove mrb_str_format declarationcremno
The function mrb_str_format is only defined when the mrbgem mruby-sprintf was activated. That might not always be the case (by default it currently is). mrb_str_format still has external linkage, so from now on mrbgem authors have to declare it in their source code if they want or need to call it.
2014-01-30Happy new year! (update copyright year)cremno
Let's not wait until May this time (f0a9b95af3d542ac1db7fcb4a3d77990a284c185)!
2014-01-30etc.c: small cleanup (delete unused functions)cremno
mrb_data_object_alloc: unnecessary cast mrb_lastline_get: mruby doesn't support $_, weird and unused code mrb_exec_recursive: see 4e46abb86914b36e70b5f3ad0826d0b648e9b4ef mrb_block_proc: unused, doesn't really do anything (or needs to be rewritten) mrb_obj_to_sym: actually use id (and MSVC detected unreachable code)
2014-01-31refactor parser lineno adjustment; ref #1667Yukihiro "Matz" Matsumoto
2014-01-30add semicolon after the statementsYukihiro "Matz" Matsumoto
2014-01-30Merge pull request #1667 from h2so5/backtrace-linenoYukihiro "Matz" Matsumoto
more accurate backtrace lineno
2014-01-30Array#[]= is now range awareYukihiro "Matz" Matsumoto
2014-01-30move Array#[] tests from mrbgems to test/t/array.rbYukihiro "Matz" Matsumoto
2014-01-30more accurate backtrace linenoh2so5
2014-01-29move range aware aget to array.c from mruby-array-ext gemYukihiro "Matz" Matsumoto
2014-01-25Merge pull request #1664 from h2so5/clone-class-moduleYukihiro "Matz" Matsumoto
clone Class/Module rightly
2014-01-25clone Class/Module rightlyh2so5
2014-01-23add callback invocation from OP_DEBUGYukihiro "Matz" Matsumoto
2014-01-23add enable_debug to build_config.rbYukihiro "Matz" Matsumoto
2014-01-22Merge pull request #1663 from h2so5/fix-utf8-codepageYukihiro "Matz" Matsumoto
fix utf8 codepage
2014-01-23fix utf-8 codepageh2so5
2014-01-22Merge pull request #1662 from h2so5/fix-string-inspectYukihiro "Matz" Matsumoto
escape non-ascii characters correctly in String#inspect
2014-01-21escape non-ascii characters correctly in String#inspecth2so5
2014-01-21describe call stack overwritten problem of mrb_get_backtrace; close #1661Yukihiro "Matz" Matsumoto
2014-01-16Merge pull request #1659 from carsonmcdonald/threestructtestsYukihiro "Matz" Matsumoto
Increase test coverage of mruby-struct
2014-01-16Increase test coverage of mruby-structCarson McDonald
2014-01-16Merge branch 'master' of github.com:mruby/mrubyYukihiro "Matz" Matsumoto
2014-01-16hash value of enumerable should be obtained from its elements; close #1658Yukihiro "Matz" Matsumoto
2014-01-16hash value of enumerable should be obtained from its elements; close #1658Yukihiro "Matz" Matsumoto
2014-01-10Merge pull request #1655 from pbosetti/master1.0.0Yukihiro "Matz" Matsumoto
Added rewrite of Array#[] to mruby-array-ext gem
2014-01-10Merge pull request #1656 from h2so5/string-length-utf8Yukihiro "Matz" Matsumoto
String#length should be an alias of String#size
2014-01-10String#length should be an alias of String#sizeh2so5
2014-01-10Added rewrite of Array#[] to mruby-array-ext gem, so that arrays can be slicedPaolo Bosetti
with Ranges (as a[1..-2])
2014-01-09Merge pull request #1654 from iij/pr-not-match-operatorYukihiro "Matz" Matsumoto
add operator "!~".
2014-01-09Merge pull request #1653 from iij/pr-fix-iso-ref-string-matchYukihiro "Matz" Matsumoto
fix ISO reference number of String#=~.