- 03 May, 2019 4 commits
-
-
Yukihiro "Matz" Matsumoto authored
Fix `FLAG_SRC_STATIC` always set in `mrb_read_irep()` with `MRB_USE_CUSTOM_RO_DATA_P`
-
Yukihiro "Matz" Matsumoto authored
Clean duplicate code
-
dearblue authored
-
dearblue authored
Removed duplicates in the code entered for "Concatenate string literal".
-
- 02 May, 2019 6 commits
-
-
Yukihiro "Matz" Matsumoto authored
Merge pull request #4417 from shuujii/unify-overflow-error-class-for-conversion-to-integer-to-RangeError Unify overflow error class for conversion to integer to `RangeError`
-
Yukihiro "Matz" Matsumoto authored
-
Yukihiro "Matz" Matsumoto authored
-
Yukihiro "Matz" Matsumoto authored
Small fix in `mruby-bin-mruby`
-
Yukihiro "Matz" Matsumoto authored
Remove unneeded `argc` check in `mrb_str_aref_m()`
-
KOBAYASHI Shuji authored
-
- 01 May, 2019 2 commits
-
-
KOBAYASHI Shuji authored
- Modify some error messages for consistency. - Add test for codegen error. - Use regular expression for error message matching in test.
-
KOBAYASHI Shuji authored
-
- 30 Apr, 2019 2 commits
-
-
Yukihiro "Matz" Matsumoto authored
Refine error message output for `mruby` command
-
KOBAYASHI Shuji authored
- Write message to stderr instead of stdout. - Avoid duplicate message output (`SyntaxError`, `ScriptError` etc). - Refine invalid option message. - Suppress redundant usage output. - Fix some incorrect exit code.
-
- 29 Apr, 2019 4 commits
-
-
Yukihiro "Matz" Matsumoto authored
Fix missing assertions in `mruby-io` test
-
Yukihiro "Matz" Matsumoto authored
Refine the default values of `flunk`
-
KOBAYASHI Shuji authored
The default message for the second argument should be set to the first argument because only one argument is normally specified.
-
KOBAYASHI Shuji authored
-
- 28 Apr, 2019 2 commits
-
-
Yukihiro "Matz" Matsumoto authored
Commented out "Struct.new removes existing constant" test
-
KOBAYASHI Shuji authored
Because this test is always skipped.
-
- 27 Apr, 2019 5 commits
-
-
Yukihiro "Matz" Matsumoto authored
Update document for `MRB_USE_CUSTOM_RO_DATA_P` and some configurations
-
dearblue authored
-
dearblue authored
- (Modify) `MRB_INT16` - (Add) `MRB_INT32` - (Modify) `MRB_INT64` - (Add) `MRB_USE_ETEXT_EDATA` - (Add) `MRB_NO_INIT_ARRAY_START - (Add) `MRB_WITHOUT_FLOAT` - (Add) `MRB_METHOD_CACHE` - (Add) `MRB_METHOD_CACHE_SIZE` - (Add) `MRB_METHOD_TABLE_INLINE - (Add) `MRB_ENABLE_ALL_SYMBOLS`
-
Yukihiro "Matz" Matsumoto authored
Remove duplicated `String#each_char`
-
KOBAYASHI Shuji authored
-
- 26 Apr, 2019 2 commits
-
-
Yukihiro "Matz" Matsumoto authored
Add customized `mrb_ro_data_p()`
-
dearblue authored
User definable `mrb_ro_data_p()` functions are available by defining `MRB_USE_CUSTOM_RO_DATA_P`. (Limitation) It can not be defined as an inline function.
-
- 25 Apr, 2019 2 commits
-
-
Yukihiro "Matz" Matsumoto authored
Singleton class of frozen object should be frozen
-
KOBAYASHI Shuji authored
Before this patch: p (class << Object.new.freeze; self end).frozen? #=> false sc = class << (o=Object.new); self end; o.freeze; p sc.frozen? #=> false After this patch / Ruby: p (class << Object.new.freeze; self end).frozen? #=> true sc = class << (o=Object.new); self end; o.freeze; p sc.frozen? #=> true
-
- 24 Apr, 2019 4 commits
-
-
Yukihiro "Matz" Matsumoto authored
Fix modiying class variable to frozen class/module
-
KOBAYASHI Shuji authored
-
Yukihiro "Matz" Matsumoto authored
-
Yukihiro "Matz" Matsumoto authored
-
- 23 Apr, 2019 3 commits
-
-
Yukihiro "Matz" Matsumoto authored
Fix "ambiguous first argument" warning in `test/t/float.rb`
-
KOBAYASHI Shuji authored
-
Yukihiro "Matz" Matsumoto authored
-
- 22 Apr, 2019 4 commits
-
-
Yukihiro "Matz" Matsumoto authored
Add `assert_match` and `assert_not_match`
-
Yukihiro "Matz" Matsumoto authored
-
KOBAYASHI Shuji authored
-
Yukihiro "Matz" Matsumoto authored
Change modifier to `MRB_INLINE` from `static inline`
-