summaryrefslogtreecommitdiffhomepage
path: root/mrbgems/mruby-proc-ext/src
AgeCommit message (Expand)Author
2020-10-12Make `Proc#parameters` to support keyword arguments; fix #5066Yukihiro "Matz" Matsumoto
2020-10-12You don't need to keep index in local variables info in `irep`.Yukihiro "Matz" Matsumoto
2020-10-12Constify `irep` members.Yukihiro "Matz" Matsumoto
2020-05-15Rename C function `mrb_proc_lambda`.Yukihiro "Matz" Matsumoto
2019-11-15Fix argument specs to `Kernel`KOBAYASHI Shuji
2019-09-25Rename symbol-to-string functions; close #4684Yukihiro "Matz" Matsumoto
2019-09-16Entrust "no block given" error to `mrb_get_args()`dearblue
2019-06-11Remove redundant colon in `Proc#inspect` (`mruby-proc-ext`)KOBAYASHI Shuji
2019-04-01Avoid keeping pointers from `mrb_sym2name_len()`; fix #4342Yukihiro "Matz" Matsumoto
2018-12-21optimize Proc#parametersTatsuhiko Kubo
2018-07-30Keyword argument implemented.Yukihiro "Matz" Matsumoto
2018-07-30New bytecode implementation of mruby VM.Yukihiro "Matz" Matsumoto
2017-04-25Avoid use of `snprintf()` when DISABLE_STDIO is set; fix #3632Yukihiro "Matz" Matsumoto
2017-04-02Reduce object allocationksss
2017-04-02Fix parameters when noname restksss
2017-03-19Fixed some compiler errors regarding PRId.Yukihiro "Matz" Matsumoto
2017-03-19Use MRB_PRId instead of "%d"; fix #3515Yukihiro "Matz" Matsumoto
2016-11-24Fix calling .arity on Proc with undefined `initialize`Francois Chagnon
2015-11-27include changed from by quotes ("") to by brackets (<>); close #3032Yukihiro "Matz" Matsumoto
2014-09-02move mrb_proc_new_cfunc_with_env() to the coreYukihiro "Matz" Matsumoto
2014-08-04add MRB_API modifiers to mruby API functionsYukihiro "Matz" Matsumoto
2014-06-25Implement Proc#parametersksss
2014-05-19Move `Kernel.local_variables` to core.take_cheeze
2014-05-16register<nlocals may not have a local variable name (e.g. a block arg); fix #...Yukihiro "Matz" Matsumoto
2014-05-14Kernel.local_variables to list UPVAR as wellYukihiro "Matz" Matsumoto
2014-04-29Remove `lv_len` and use `nlocals - 1` instead.take_cheeze
2014-04-29Implement Kernel.local_variables for testing dumped local variables information.take_cheeze
2014-04-14Fix and add test to Proc#inspect .Takeshi Watanabe
2014-04-01Add macro MRB_ENV_UNSHARE_STACK instead of assigning -1 directly.take_cheeze
2014-04-01Use MRB_ENV_STACK_LEN instead of accessing `flags` directly to get REnv's sta...take_cheeze
2014-03-31Add API to define cfunc Proc with userdata.take_cheeze
2014-03-08Make type casts safer.Masaki Muranaka
2014-03-06fix and add test for Proc#source_locationtake_cheeze
2014-02-26use mrb_str_cat_lit() more widelycubicdaiya
2014-02-06introduce mrb_str_new_lit() to create strings from C string litralsYukihiro "Matz" Matsumoto
2013-09-21rename voidp to cptrYukihiro "Matz" Matsumoto
2013-04-25rename every ARGS_XXX to MRB_ARGS_XXX; ref #1206Yukihiro "Matz" Matsumoto
2013-04-17Add mruby-proc-exth2so5