summaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)Author
2019-07-16Copy receiver's `MRB_STR_ASCII` flag in some methods of `String`KOBAYASHI Shuji
2019-07-16Merge pull request #4576 from dearblue/error-configurationYukihiro "Matz" Matsumoto
Error needed/conflicts configuration
2019-07-16Merge pull request #4580 from shuujii/unify-type-of-line-number-to-uint16_tYukihiro "Matz" Matsumoto
Unify type of line number to `uint16_t`
2019-07-16Merge pull request #4579 from ↵Yukihiro "Matz" Matsumoto
shuujii/keep-MRB_STR_ASCII-flag-in-some-methods-of-String Keep `MRB_STR_ASCII` flag in some methods of `String`
2019-07-15Unify type of line number to `uint16_t`KOBAYASHI Shuji
2019-07-15Add `MRB_API` to `mrb_str_modify_keep_ascii()`KOBAYASHI Shuji
2019-07-15Merge pull request #4578 from dearblue/improve-utf8lenYukihiro "Matz" Matsumoto
Improve `utf8len()` performance with UTF-8
2019-07-14Keep `MRB_STR_ASCII` flag in some methods of `String`KOBAYASHI Shuji
2019-07-14Merge pull request #4577 from dearblue/pack-unpackYukihiro "Matz" Matsumoto
Fix pack/unpack for base64; ref #4556
2019-07-14Improve `utf8len()` performance with UTF-8dearblue
2019-07-14Fix empty array refers; ref #4556dearblue
For example, `"".unpack("")` evaluates to `[]`.
2019-07-14Fix pack/unpack for base64; ref #4556dearblue
The pack/unpack "m" directive should be treated as a length rather than an element count.
2019-07-15Add pack/unpack test for base64dearblue
2019-07-14Error needed/conflicts configurationdearblue
The purpose is to clarify the error if there is a needed/conflicts configuration at compile time.
2019-07-13Use stack memory for small name of attr accessorsdearblue
Also integrated the common parts of `mrb_mod_attr_reader()` and `mrb_mod_attr_writer()` functions.
2019-07-13Merge pull request #4574 from shuujii/add-mruby-method-gem-to-default.gemboxYukihiro "Matz" Matsumoto
Add `mruby-method` gem to `default.gembox` [ci skip]
2019-07-13Add `mruby-method` gem to `default.gembox` [ci skip]KOBAYASHI Shuji
2019-07-13`Enumerable#detect` {and `#find`} should call `ifnone`; fix #4484Yukihiro "Matz" Matsumoto
It's an error in ISO specification; 15.3.2.2.4 and 15.3.2.2.7
2019-07-13Resolve ambiguous argument warning.Yukihiro "Matz" Matsumoto
2019-07-13Change type of a variable for signedness mismatch; ref #4573Yukihiro "Matz" Matsumoto
2019-07-13Avoid `mrb_funcall()` if possible using `mrb_Float()`; ref #4555Yukihiro "Matz" Matsumoto
2019-07-12Merge pull request #4571 from ↵Yukihiro "Matz" Matsumoto
shuujii/consider--MP-flag-specified-when-parsing-.d-file Consider `-MP` flag specified when parsing `.d` file
2019-07-12Merge pull request #4573 from dearblue/fix-4569Yukihiro "Matz" Matsumoto
Fix heap buffer overflow; fix #4569
2019-07-12Fix heap buffer overflow; fix #4569dearblue
2019-07-12Merge pull request #4572 from shuujii/lazy-load-tasks-toolchainsYukihiro "Matz" Matsumoto
Lazy load `tasks/toolchains/*.rake`
2019-07-12Lazy load `tasks/toolchains/*.rake`KOBAYASHI Shuji
2019-07-12Consider `-MP` flag specified when parsing `.d` fileKOBAYASHI Shuji
`-MP` flag is used in `tasks/toolchains/android.rake`.
2019-07-12Merge pull request #4569 from dearblue/improve-string-indexYukihiro "Matz" Matsumoto
Improve performance `String#index` with UTF-8
2019-07-11Add UTF-8 test for `String#index`dearblue
2019-07-11Improve performance `String#index` with UTF-8dearblue
Based on Boyer-Moore-Horspool algorithm (Quick Search algorithm). As a side effect, the correct position is returned even if an invalid UTF-8 string is given. ```console % ./mruby@master -e 'p ("\xd1" * 100 + "#").index("#")' 50 % ./mruby@improve-index -e 'p ("\xd1" * 100 + "#").index("#")' 100 ``` The other behavior should be the same as the current implementation.
2019-07-10Merge pull request #4568 from ↵Yukihiro "Matz" Matsumoto
shuujii/remove-an-unused-argument-of-str_with_class Remove an unused argument of `str_with_class()`
2019-07-10Remove an unused argument of `str_with_class()`KOBAYASHI Shuji
2019-07-09Merge pull request #4562 from ↵Yukihiro "Matz" Matsumoto
shuujii/set-MRB_STR_ASCII-flag-when-an-inline-symbol-is-stringized Set `MRB_STR_ASCII` flag when an inline symbol is stringized
2019-07-09Set `MRB_STR_ASCII` flag when an inline symbol is stringizedKOBAYASHI Shuji
2019-07-09Merge pull request #4560 from lopopolo/range-max-min-hangYukihiro "Matz" Matsumoto
Specialize Enumerable#max and Enumerable#min for Range
2019-07-09Revert Float dependency in Range#eachRyan Lopopolo
2019-07-09Fix Range#min fast path with exclusive rangeRyan Lopopolo
2019-07-09Add a fast path for Float and Fixnum ranges for Range#max and Range#minRyan Lopopolo
If no block is given and the Range has Fixnum or Float endpoints, do not iterate with each and instead compare the endpoints directly. This implementation passes all of the applicable specs from Ruby Spec.
2019-07-09Add Range#max and Range#min tests from Ruby SpecRyan Lopopolo
2019-07-09Remove attempt at spec-compliant Range#max and Range#min from coreRyan Lopopolo
2019-07-09Merge pull request #4561 from ↵Yukihiro "Matz" Matsumoto
shuujii/fix-the-order-of-expected-and-actual-in-test-t-range.rb Fix the order of "expected" and "actual" in `test/t/range.rb`
2019-07-08Specialize Enumerable#max and Enumerable#min for RangeRyan Lopopolo
This patch prevents a hang for pathalogical (large) Ranges when computing max and min. Range inherits its implementation of max and min from Enumerable. Enumerable implements max and min by calling each. For Range objects, this is unnecessary since we know the max and the min by the end and begin attributes. It is also very slow. This code hangs unnecessarily: (0..2**32).max # ... hang (0..2**32).min # ... hang This patch overrides max and min after including enumerable to yield based on the begin and end methods.
2019-07-08Add tests for String RangesRyan Lopopolo
Range#each depends on String#upto which is implemented in mruby-string-ext which is why these tests live there.
2019-07-08Add tests for Range#max and Range#minRyan Lopopolo
2019-07-09Fix the order of "expected" and "actual" in `test/t/range.rb`KOBAYASHI Shuji
2019-07-09Merge pull request #4559 from ↵Yukihiro "Matz" Matsumoto
shuujii/add-macros-for-inline-symbol-for-readability Add macros for inline symbol for readability
2019-07-08Add macros for inline symbol for readabilityKOBAYASHI Shuji
2019-07-08Merge pull request #4557 from shuujii/fix-Numeric-step-to-infinityYukihiro "Matz" Matsumoto
Fix `Numeric#step` to infinity; ref. #4555
2019-07-07Fix `Numeric#step` to infinity; ref. #4555KOBAYASHI Shuji
2019-07-06Merge pull request #4554 from shuujii/fix-missing--ifndef-MRB_ENABLE_ALL_SYMBOLSYukihiro "Matz" Matsumoto
Fix missing `#ifndef MRB_ENABLE_ALL_SYMBOLS`