| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2013-11-14 | remove unnecessary jump | Yukihiro "Matz" Matsumoto | |
| 2013-11-13 | Merge pull request #1571 from bggd/patch-1 | Yukihiro "Matz" Matsumoto | |
| Changed a variable declaration to top of block | |||
| 2013-11-13 | Changed a variable declaration to top of block | bggd | |
| 2013-11-13 | Changed a variable declaration to top of block | bggd | |
| 2013-11-13 | load_exec() no longer return fixnum value for no_exec; should close #1569 | Yukihiro "Matz" Matsumoto | |
| 2013-11-13 | fclose input file | Yukihiro "Matz" Matsumoto | |
| 2013-11-13 | pacify some warnings on OpenBSD | Yukihiro "Matz" Matsumoto | |
| 2013-11-13 | fixnum in irep->pool may overflow | Yukihiro "Matz" Matsumoto | |
| 2013-11-10 | call codedump_all() from mirb if --verbose is set; close #1559 | Yukihiro "Matz" Matsumoto | |
| 2013-11-10 | cancel #1565 since it breaks mirb; instead add special treatment to heredocs | Yukihiro "Matz" Matsumoto | |
| 2013-11-10 | check for corrupted mrb file data | Yukihiro "Matz" Matsumoto | |
| 2013-11-09 | Merge branch 'master' of github.com:mruby/mruby | Yukihiro "Matz" Matsumoto | |
| 2013-11-09 | Merge pull request #1566 from carsonmcdonald/supresstosuppress | Yukihiro "Matz" Matsumoto | |
| Change supress to suppress | |||
| 2013-11-09 | Change supress to suppress | Carson McDonald | |
| 2013-11-08 | Merge pull request #1565 from Fleurer/fix1564 | Yukihiro "Matz" Matsumoto | |
| nextc(): always return an '\n' at end of input | |||
| 2013-11-09 | protect returning irep (in proc) from GC | Yukihiro "Matz" Matsumoto | |
| 2013-11-08 | allow irep to be GCed | Yukihiro "Matz" Matsumoto | |
| 2013-11-08 | nextc(): always return an '\n' at end of input | fleuria | |
| fix #1564 | |||
| 2013-11-07 | type check before pool scan | Yukihiro "Matz" Matsumoto | |
| 2013-11-07 | call_iseq will never be NULL | Yukihiro "Matz" Matsumoto | |
| 2013-11-07 | wrong return value from read_lineno_record() | Yukihiro "Matz" Matsumoto | |
| 2013-11-07 | create Proc object before releasing memory pool | Yukihiro "Matz" Matsumoto | |
| 2013-11-07 | forgot to free irep->reps | Yukihiro "Matz" Matsumoto | |
| 2013-11-07 | irep->pool not to be GCed | Yukihiro "Matz" Matsumoto | |
| 2013-11-07 | modified to use irep->reps to reference child ireps. preparation for | Yukihiro "Matz" Matsumoto | |
| removing irep array from mrb_state. note that instructions OP_LAMBDA, OP_EXEC and OP_EPUSH are incompatible, and dumped mrb format has changed. | |||
| 2013-11-05 | resolved conflicts and updated to latest return value change of ↵ | Yukihiro "Matz" Matsumoto | |
| mrb_generate_code() | |||
| 2013-11-04 | add Fiber.current | Yukihiro "Matz" Matsumoto | |
| 2013-11-04 | Merge branch 'master' of github.com:mruby/mruby | Yukihiro "Matz" Matsumoto | |
| 2013-11-03 | Merge pull request #1562 from takahashim/mrbc-add-newline | Yukihiro "Matz" Matsumoto | |
| mrbc: add line break for -c option, like other options | |||
| 2013-11-03 | mirb: reset stack in the first command | fleuria | |
| 2013-11-03 | refactor mrb_context_run() | fleuria | |
| 2013-11-03 | introduce mrb_context_run() | fleuria | |
| currently there are two scnenario to call mrb_run(), the first is calling a proc, in this case mrb should create a new environment, discarding all the variables except args, reciever and block. the second is calling the newly generated irep, like in mirb. in this case, the variables should be kept after mrb_run(). so we introduce mrb_context_run() to handle this seperately. | |||
| 2013-11-03 | mrbc: add line break for -c option | takahashim | |
| 2013-11-03 | small style fix | Yukihiro "Matz" Matsumoto | |
| 2013-11-03 | Merge branch 'master' of github.com:mruby/mruby | Yukihiro "Matz" Matsumoto | |
| 2013-11-02 | Merge pull request #1560 from 3miliano/master | Yukihiro "Matz" Matsumoto | |
| Added support for Random as an argument to shuffle and shuffle! | |||
| 2013-11-02 | Added support for Random as an argument to shuffle and shuffle!. Refactored ↵ | Emiliano Lesende | |
| random gem to use DATA instance type and hold mt_state inside the DATA_PTR instead of in an instance variable. | |||
| 2013-11-02 | remove scope->idx | Yukihiro "Matz" Matsumoto | |
| 2013-11-02 | codedump() to take irep structure | Yukihiro "Matz" Matsumoto | |
| 2013-11-02 | change return value from mrb_generate_code() | Yukihiro "Matz" Matsumoto | |
| 2013-11-01 | Merge pull request #1557 from 3miliano/master | Yukihiro "Matz" Matsumoto | |
| Added shuffle and shuffle! to the Array class in the Random gem. | |||
| 2013-11-01 | Added shuffle and shuffle! to the Array class in the Random gem. | Emiliano Lesende | |
| 2013-11-01 | changed argument type of mrb_ary_modify(); ref #1554 | Yukihiro "Matz" Matsumoto | |
| 2013-10-31 | add mrb_ary_modify(mrb,a); you have to ensure mrb_value a to be an array; ↵ | Yukihiro "Matz" Matsumoto | |
| ref #1554 | |||
| 2013-10-31 | Merge branch 'master' of github.com:mruby/mruby | Yukihiro "Matz" Matsumoto | |
| 2013-10-31 | restore context status to RUNNING on automatic yield at the end of the ↵ | Yukihiro "Matz" Matsumoto | |
| block; fix #1555 | |||
| 2013-10-30 | Merge pull request #1553 from Fleurer/fix1550-cont | Yukihiro "Matz" Matsumoto | |
| fix 3a4c8e2 | |||
| 2013-10-30 | fix 3a4c8e2 | fleuria | |
| unfortunately the previouse commit is incorrect, which still concate the keywords, but like this: method='"end\nb"' (201) | |||
| 2013-10-30 | resolve conflict #1552 | Yukihiro "Matz" Matsumoto | |
| 2013-10-30 | Merge pull request #1551 from Fleurer/fix1550 | Yukihiro "Matz" Matsumoto | |
| fix #1550 | |||
