| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2018-08-25 | Reduce integer casting warnings. | Yukihiro "Matz" Matsumoto | |
| 2018-08-25 | Should update `ci->env` to share the environment; fix #4073 | Yukihiro "Matz" Matsumoto | |
| 2018-07-30 | New bytecode implementation of mruby VM. | Yukihiro "Matz" Matsumoto | |
| 2018-07-23 | Kernel#instance_eval should define singleton methods; fix #4069 | Yukihiro "Matz" Matsumoto | |
| 2017-11-10 | Need to clear stack region for local variables in eval; fix #3844 | Yukihiro "Matz" Matsumoto | |
| 2017-10-28 | Fixed UPVAR gotchas; fix #3835 | Yukihiro "Matz" Matsumoto | |
| Both `uvenv` function and `env` generation in `create_proc_from_string` function have bugs to handling enclosed environment objects. | |||
| 2017-10-28 | Heavily refactored how lexical scope links are implemented; fix #3821 | Yukihiro "Matz" Matsumoto | |
| Instead of `irep` links, we added a `upper` link to `struct RProc`. To make a space for the `upper` link, we moved `target_class` reference. If a `Proc` does not have `env`, `target_class` is saved in an `union` shared with `env` (if a `Proc` has env, you can tell it by `MRB_PROC_ENV_P()). Otherwise `target_class` is referenced from `env->c`. We removed links in `env` as well. This change removes 2 members from `mrb_irep` struct, thus saving 2 words per method/proc/block. This also fixes potential memory leaks due to the circular references caused by a link from `mrb_irep`. | |||
| 2017-09-27 | fix: mrbgems\mruby-eval\src\eval.c(301): warning C4244: 'function': ↵ | Tomasz Dąbrowski | |
| conversion from 'mrb_int' to 'int', possible loss of data | |||
| 2017-09-27 | fix: mrbgems\mruby-eval\src\eval.c(214): warning C4244: '=': conversion from ↵ | Tomasz Dąbrowski | |
| 'mrb_int' to 'short', possible loss of data | |||
| 2017-08-12 | Reduce integer type mismatch warnings in VC. | Yukihiro "Matz" Matsumoto | |
| 2017-07-20 | Need to patch `OP_GETUPVAR` and `OP_SETUPVAR`; fix #3732 | Yukihiro "Matz" Matsumoto | |
| 2017-07-12 | Use "$!" specifier of `mrb_get_args`. | Yukihiro "Matz" Matsumoto | |
| 2017-06-19 | Fixed disclosure of local variables by `eval`; ref #3710 | Yukihiro "Matz" Matsumoto | |
| This patch fixes the latter part of #3710. We need to change `struct REnv` to fix the former part of the issue. | |||
| 2017-06-15 | Print the file name along with line number on syntax errors; fix #3698 | Yukihiro "Matz" Matsumoto | |
| 2017-04-25 | Avoid use of `snprintf()` when DISABLE_STDIO is set; fix #3632 | Yukihiro "Matz" Matsumoto | |
| ref #3492 #3515 #3517 | |||
| 2017-04-22 | Keep reference to mrb_context from env; fix #3619 | Yukihiro "Matz" Matsumoto | |
| 2017-03-17 | Avoid trampoline when #eval is called from mrb_funcall(); fix #3522 | Yukihiro "Matz" Matsumoto | |
| 2017-03-15 | `instance_eval` method does not introduce C function boundary; fix #3508 | Yukihiro "Matz" Matsumoto | |
| 2017-02-16 | Configure callinfo target_class as CRuby; ref #3429 | Yukihiro "Matz" Matsumoto | |
| 2017-02-16 | Avoid executing OP_STOP in eval(); fix #3429 | Yukihiro "Matz" Matsumoto | |
| 2017-02-16 | Adjust callinfo env and target_class; ref #3429 | Yukihiro "Matz" Matsumoto | |
| 2017-02-04 | Make `eval` to use trampoline technique; fix #3415 | Yukihiro "Matz" Matsumoto | |
| Now `eval()` can call Fiber.yield etc. | |||
| 2016-09-06 | Fix SEGV when unshared env | ksss | |
| 2016-08-08 | instance_eval env should remake Fix #3191 | ksss | |
| 2016-04-11 | mruby-eval: instance_eval should keep target_class; close #3141 | Yukihiro "Matz" Matsumoto | |
| 2016-03-06 | Suppress a warning | Kouhei Sutou | |
| mrbgems/mruby-eval/src/eval.c: In function ‘create_proc_from_string’: mrbgems/mruby-eval/src/eval.c:152:10: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] file = "(eval)"; ^ | |||
| 2016-02-15 | Fix segfault when `eval("__FILE__")` is executed | Yusuke Endoh | |
| 2016-01-08 | fixed a problem with upvar access from instance_eval; ref #3072 | Yukihiro "Matz" Matsumoto | |
| 2016-01-07 | mruby-eval: fixed receiver value in eval context; close #3072 | Yukihiro "Matz" Matsumoto | |
| 2016-01-07 | mruby-sprintf to use mrb_int formatting macros; ref #3076 | Yukihiro "Matz" Matsumoto | |
| 2015-11-27 | include changed from by quotes ("") to by brackets (<>); close #3032 | Yukihiro "Matz" Matsumoto | |
| 2015-09-14 | instance_eval should set target_class; close #2936 | Yukihiro "Matz" Matsumoto | |
| target_class should be singleton class of the receiver | |||
| 2014-12-23 | mruby-eval: fix typo | sdottaka | |
| 2014-12-19 | now retrieves number of arguments of blocks from OP_ENTER op code; close #2671 | Yukihiro "Matz" Matsumoto | |
| 2014-12-17 | mruby-eval: proc from env may be NULL; close #2676 | Yukihiro "Matz" Matsumoto | |
| 2014-12-17 | avoid out-of-bounds access of irep->lv; ref #2671, fix #2675 | Yukihiro "Matz" Matsumoto | |
| allocation size of irep->iv is irep->nlocals-1. | |||
| 2014-12-17 | eval() should preserve stack in env properly; fix #2671 | Yukihiro "Matz" Matsumoto | |
| 2014-10-18 | need addtional type check to avoid SEGV; ref #2609 | Yukihiro "Matz" Matsumoto | |
| 2014-10-17 | context proc may be cfunc; fix #2609 | Yukihiro "Matz" Matsumoto | |
| 2014-09-30 | Merge pull request #2599 from SatoshiOdawara/fix_target_class_in_instance_eval | Yukihiro "Matz" Matsumoto | |
| target_class should not be TT_ICLASS in instance_eval(string); ref #1152 | |||
| 2014-09-29 | target_class should not be TT_ICLASS in instance_eval(string); ref #1152 | Satoshi Odawara | |
| 2014-09-29 | fixed. closures scope in eval(string) | Satoshi Odawara | |
| 2014-08-20 | Remove empty lines. | Tatsuhiko Kubo | |
| 2014-08-19 | Fix error handling for mrb_generate_code(). | Tatsuhiko Kubo | |
| The return value of mrb_generate_code() must be null-checked before referencing. | |||
| 2014-08-08 | fixed evaluation context of eval(string) and instance_eval(string) | Satoshi Odawara | |
| 2014-07-22 | restore mrb_get_args() in f_instance_eval to check arguments type | Yukihiro "Matz" Matsumoto | |
| 2014-07-22 | exception in instance_eval should not exit mrb_run; fix #2483 | Yukihiro "Matz" Matsumoto | |
| 2014-07-16 | remove unused local variables; ref #2473 | Yukihiro "Matz" Matsumoto | |
| 2014-07-15 | Implement string compiling `instance_eval` method. | take_cheeze | |
| 2014-07-12 | Add `SyntaxError` test and don't print compilation error to stderr in eval. | take_cheeze | |
