- 22 Jul, 2019 5 commits
-
-
Yukihiro "Matz" Matsumoto authored
-
Yukihiro "Matz" Matsumoto authored
The Complex class needs `mrb_float` so that it does not work with `MRB_WITHOUT_FLOAT` anyway.
-
Yukihiro "Matz" Matsumoto authored
Now `rand` can be used with `MRB_WITHOUT_FLOAT`; ref #4576
-
Yukihiro "Matz" Matsumoto authored
-
Yukihiro "Matz" Matsumoto authored
Normal `TYPED_FIXABLE(f,mrb_float)` does not work on 64bit int from casting problems. The new approach works well, but assumes two's complement and IEEE-754 floating point numbers.
-
- 19 Jul, 2019 2 commits
-
-
Yukihiro "Matz" Matsumoto authored
Refine `String#chr` test and separate `Fixnum#chr` test
-
KOBAYASHI Shuji authored
-
- 18 Jul, 2019 3 commits
-
-
Yukihiro "Matz" Matsumoto authored
Use stack memory for small name of attr accessors
-
Yukihiro "Matz" Matsumoto authored
Fix `String#*` test with `MRB_WITHOUT_FLOAT`
-
KOBAYASHI Shuji authored
-
- 17 Jul, 2019 16 commits
-
-
Yukihiro "Matz" Matsumoto authored
-
Yukihiro "Matz" Matsumoto authored
-
Yukihiro "Matz" Matsumoto authored
Fix `String#[]` test
-
Yukihiro "Matz" Matsumoto authored
Fix `(fixnum_value ... float_value).min` with `mruby-range-ext`
-
Yukihiro "Matz" Matsumoto authored
-
Yukihiro "Matz" Matsumoto authored
Revert #4300
-
Yukihiro "Matz" Matsumoto authored
Allow `mruby-range-ext` to work with `MRB_WITHOUT_FLOAT`; ref 2add8641
-
KOBAYASHI Shuji authored
-
KOBAYASHI Shuji authored
Originally, it was not necessary to change. I made mistake.
-
KOBAYASHI Shuji authored
Before this patch: $ bin/mruby -e 'p (2...4.0).min' #=> TypeError After this patch (same as CRuby and without `mruby-range-ext`): $ bin/mruby -e 'p (2...4.0).min' #=> 2
-
KOBAYASHI Shuji authored
-
Yukihiro "Matz" Matsumoto authored
-
Yukihiro "Matz" Matsumoto authored
Functions that are called infrequently need not to be inline.
-
Yukihiro "Matz" Matsumoto authored
-
Yukihiro "Matz" Matsumoto authored
Let inspect recursion do the right thing
-
Yukihiro "Matz" Matsumoto authored
-
- 16 Jul, 2019 3 commits
-
-
Yukihiro "Matz" Matsumoto authored
Copy receiver's `MRB_STR_ASCII` flag in some methods of `String`
-
KOBAYASHI Shuji authored
-
Yukihiro "Matz" Matsumoto authored
Error needed/conflicts configuration
-
- 15 Jul, 2019 3 commits
-
-
Yukihiro "Matz" Matsumoto authored
Unify type of line number to `uint16_t`
-
Yukihiro "Matz" Matsumoto authored
Keep `MRB_STR_ASCII` flag in some methods of `String`
-
KOBAYASHI Shuji authored
-
- 14 Jul, 2019 7 commits
-
-
KOBAYASHI Shuji authored
-
Yukihiro "Matz" Matsumoto authored
Improve `utf8len()` performance with UTF-8
-
KOBAYASHI Shuji authored
-
Yukihiro "Matz" Matsumoto authored
Fix pack/unpack for base64; ref #4556
-
dearblue authored
-
dearblue authored
For example, `"".unpack("")` evaluates to `[]`.
-
dearblue authored
The pack/unpack "m" directive should be treated as a length rather than an element count.
-
- 15 Jul, 2019 1 commit
-
-
dearblue authored
-