index
:
mruby
master
mruby2-draft
removing-y-tab-c
revert-5391-throw
stable
web_export
Lightweight Ruby
realtradam
summary
refs
log
tree
commit
diff
homepage
log msg
author
committer
range
path:
root
/
include
Age
Commit message (
Expand
)
Author
2021-10-12
Merge branch 'exc_mesg' of https://github.com/take-cheeze/mruby into take-che...
Yukihiro "Matz" Matsumoto
2021-10-12
Support Ruby3.0 keyword arguments.
Yukihiro "Matz" Matsumoto
2021-10-03
mruby/ops.h: add new instructions `OP_GETIDX` and `OP_SETIDX`.
Yukihiro "Matz" Matsumoto
2021-09-30
value.h: introduce `MRB_TT_STRUCT` for `mruby-struct`.
Yukihiro "Matz" Matsumoto
2021-09-25
mrbconf.h: rename a configuration macro for no truncate floats.
Yukihiro "Matz" Matsumoto
2021-09-19
codegen.c: unify `OP_ARYPUSH` and `OP_ARYPUSH_N`.
Yukihiro "Matz" Matsumoto
2021-09-17
ops.h: add `OP_ARYPUSH_N` instruction.
Yukihiro "Matz" Matsumoto
2021-09-10
ops.h: update `OP_HASHADD` description.
Yukihiro "Matz" Matsumoto
2021-09-10
mruby.h: remove `acc` from `callinfo`; add `cci` instead.
Yukihiro "Matz" Matsumoto
2021-09-10
ops.h: add `OP_SYMBOL` instruction.
Yukihiro "Matz" Matsumoto
2021-09-09
value.h: add configuration macros around `mrb_ro_data_p()`; close #5547
Yukihiro "Matz" Matsumoto
2021-09-09
value.h: use `etext` and `edata` which are more widely available; #5547
Yukihiro "Matz" Matsumoto
2021-09-07
value.h: fixed address comparison on macOS.
Yukihiro "Matz" Matsumoto
2021-09-07
object.c: rename `mrb_to_int` to `mrb_to_integer`.
Yukihiro "Matz" Matsumoto
2021-09-07
string.h: rename `mrb_str_to_inum` to `mrb_str_to_integer`.
Yukihiro "Matz" Matsumoto
2021-09-07
parse.y: refactor `mrb_parser_parse()`.
Yukihiro "Matz" Matsumoto
2021-09-05
boxing_word.h: avoid `mrb_float_p()` when `MRB_NO_FLOAT` is on; fix #5546
Yukihiro "Matz" Matsumoto
2021-09-01
mruby.h: obsolete `mrb_to_str()`.
Yukihiro "Matz" Matsumoto
2021-09-01
object.c: remove `mrb_convert_to_integer()' function.
Yukihiro "Matz" Matsumoto
2021-09-01
string.h: obsolete `mrb_str_to_str()`, even from examples.
Yukihiro "Matz" Matsumoto
2021-09-01
mruby.h: reorganize `mrb_ensure/check` functions in headers.
Yukihiro "Matz" Matsumoto
2021-08-30
Merge pull request #5542 from dearblue/mrb_get_args-cI
Yukihiro "Matz" Matsumoto
2021-08-28
Allow `nil` for `c!` and `I!` specifiers of `mrb_get_args()`
dearblue
2021-08-28
Integrate the processing of similar specifiers of `mrb_get_args()`
dearblue
2021-08-26
boxing_nan.h: rename prefix `BOXNAN` to `NANBOX`.
Yukihiro "Matz" Matsumoto
2021-08-26
boxing_word.h: rename prefix `BOXWORD` to `WORDBOX`.
Yukihiro "Matz" Matsumoto
2021-08-26
boxing_word.h: rename configuration macro name.
Yukihiro "Matz" Matsumoto
2021-08-26
value.h: reconstruct `mrb_ro_data_p()`.
Yukihiro "Matz" Matsumoto
2021-08-24
Merge pull request #5535 from dearblue/get-args-frozen
Yukihiro "Matz" Matsumoto
2021-08-23
Checks the frozen object with `mrb_get_args()`
dearblue
2021-08-21
Organize the include of header files
dearblue
2021-08-21
boxing_word.h: embed `mrb_float` in `mrb_value` if possible.
Yukihiro "Matz" Matsumoto
2021-08-19
symbol.c: reduce memory by avoiding alignment gaps.
Yukihiro "Matz" Matsumoto
2021-08-19
value.h: fixed warnings on `__APPLE__`.
Yukihiro "Matz" Matsumoto
2021-08-19
value.h: enable `mrb_ro_data_p()` on `__linux__` and `__APPLE__`.
Yukihiro "Matz" Matsumoto
2021-08-17
boxing_word.h: simplifies inline symbols on `MRB_64BIT`.
Yukihiro "Matz" Matsumoto
2021-08-13
Check the class with `I` specifier of `mrb_get_args()`
dearblue
2021-08-07
array.h: avoid duplicated defined of `MRB_ARY_NO_EMBED`; fix #5520
Yukihiro "Matz" Matsumoto
2021-07-31
codegen.c: `mrb_prev_pc()` to take previous instruction position.
Yukihiro "Matz" Matsumoto
2021-07-26
irep.h: operand c should be fit in `uint8_t`.
Yukihiro "Matz" Matsumoto
2021-07-25
Remove redundant include headers.
Yukihiro "Matz" Matsumoto
2021-07-17
Output an error if the `INTPTR_MAX` macro is undefined in C++
dearblue
2021-07-09
debug.h: use `uint8_t` instead of `char` for BER compressed binary.
Yukihiro "Matz" Matsumoto
2021-07-08
debug.c: new debug line information format `mrb_debug_line_packed_map`.
Yukihiro "Matz" Matsumoto
2021-07-03
ops.h: made terms consistent.
Yukihiro "Matz" Matsumoto
2021-07-03
vm.c: `OP_DEF` to push a symbol to `a` register.
Yukihiro "Matz" Matsumoto
2021-06-30
Revert "Remove `OP_EXT[123]` from operands."
Yukihiro "Matz" Matsumoto
2021-06-20
Added `MRB_OBJ_ALLOC()` macro that does not require a cast
dearblue
2021-06-19
Added `MRB_API` function to get block arguments info.
dearblue
2021-06-16
Merge pull request #5445 from jbampton/add-codespell-pre-commit-hook
Yukihiro "Matz" Matsumoto
[next]