- 04 Jun, 2019 1 commit
-
-
dearblue authored
-
- 02 Jun, 2019 2 commits
-
-
Yukihiro "Matz" Matsumoto authored
Fix missing assertions in `mruby-objectspace` test
-
KOBAYASHI Shuji authored
-
- 01 Jun, 2019 1 commit
-
-
Yukihiro "Matz" Matsumoto authored
Comment out the empty `Array#bsearch_index` test
-
- 31 May, 2019 1 commit
-
-
KOBAYASHI Shuji authored
-
- 30 May, 2019 3 commits
-
-
Yukihiro "Matz" Matsumoto authored
Fix missing assertions in `mruby-fiber` test
-
KOBAYASHI Shuji authored
-
Yukihiro "Matz" Matsumoto authored
-
- 29 May, 2019 6 commits
-
-
Yukihiro "Matz" Matsumoto authored
`Kernel#itself` should not be a module function
-
KOBAYASHI Shuji authored
-
Yukihiro "Matz" Matsumoto authored
-
Yukihiro "Matz" Matsumoto authored
This time, the allocated memory comes from the string object, which is referenced from GC arena. The memory region will be reclaimed when the C function called from VM is terminated, or the GC arena is restored.
-
Yukihiro "Matz" Matsumoto authored
Fix `Rational#==(Complex)`
-
Yukihiro "Matz" Matsumoto authored
Fix missing assertions in `mruby-pack` test
-
- 28 May, 2019 2 commits
-
-
KOBAYASHI Shuji authored
-
Yukihiro "Matz" Matsumoto authored
Merge pull request #4474 from shuujii/use-undefined.equal-obj2-instead-of-obj2-eq-undefined-in-assert.rb Use `$undefined.equal?(obj2)` instead of `obj2 == $undefined` in `ass…
-
- 27 May, 2019 5 commits
-
-
Yukihiro "Matz" Matsumoto authored
Merge pull request #4473 from shuujii/make-some-functions-static-in-mrbgems-mruby-metaprog-src-metaprog.c Make some functions static in `mrbgems/mruby-metaprog/src/metaprog.c`
-
KOBAYASHI Shuji authored
In case `obj2.==` is broken.
-
KOBAYASHI Shuji authored
Consider a Numreic class like `Complex` that does not have `<=>` but `==` works (`0i == 0r` is `true`).
-
KOBAYASHI Shuji authored
-
Yukihiro "Matz" Matsumoto authored
Remove `mrb_alloca()` function
-
- 26 May, 2019 6 commits
-
-
Yukihiro "Matz" Matsumoto authored
Move `mrb_mod_s_nesting()` to `mruby-metaprog` gem from the core
-
Yukihiro "Matz" Matsumoto authored
Add `Complex.rect`
-
KOBAYASHI Shuji authored
-
KOBAYASHI Shuji authored
-
Yukihiro "Matz" Matsumoto authored
-
Yukihiro "Matz" Matsumoto authored
Fix double rounded by negative index for `String#[]`
-
- 25 May, 2019 4 commits
-
-
dearblue authored
When I found this function, I expected it to behave the same as the `alloca(3)` function, but it is accually the `mrb_alloca()` function does not free the heap until the `mrb_close()` function is called. Also, even if it is deleted, it can be replaced with the combination of the `MRB_TT_DATA` object and the `mrb_gv_set()` function if it is sure necessary.
-
dearblue authored
- Before patched: ``` $ mruby -e 'p (-12..-1).map { |i| "Hello"[i] }.join' "HelloHello" ``` - After patched: ``` $ mruby -e 'p (-12..-1).map { |i| "Hello"[i] }.join' "Hello" ```
-
Yukihiro "Matz" Matsumoto authored
Name the return value of `mrb_range_beg_len()`
-
dearblue authored
-
- 24 May, 2019 2 commits
-
-
Yukihiro "Matz" Matsumoto authored
Fix the order of "expected" and "actual" in `mruby-time` test
-
KOBAYASHI Shuji authored
-
- 23 May, 2019 2 commits
-
-
Yukihiro "Matz" Matsumoto authored
Freeze `Rational` and `Complex` objects
-
KOBAYASHI Shuji authored
-
- 22 May, 2019 2 commits
-
-
Yukihiro "Matz" Matsumoto authored
`Kernel#Rational` requires numerator
-
KOBAYASHI Shuji authored
-
- 21 May, 2019 3 commits
-
-
Yukihiro "Matz" Matsumoto authored
Read irep from buffers
-
Yukihiro "Matz" Matsumoto authored
-
Yukihiro "Matz" Matsumoto authored
-