- 02 May, 2019 3 commits
-
-
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()`
-
- 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 6 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`
-
Yukihiro "Matz" Matsumoto authored
Use `MRB_ASPEC_XXX()` macro in `codedump()`
-
KOBAYASHI Shuji authored
-
- 21 Apr, 2019 3 commits
-
-
Yukihiro "Matz" Matsumoto authored
Commented out `String#scan` because it is not implemented yet
-
Yukihiro "Matz" Matsumoto authored
Expand `BOXWORD_SET_VALUE()` macro in `include/mruby/boxing_word.h`
-
KOBAYASHI Shuji authored
-
- 20 Apr, 2019 1 commit
-
-
KOBAYASHI Shuji authored
In `SET_OBJ_VALUE()`, branch isn't removed because `switch` condition isn't constant expression.
-
- 19 Apr, 2019 1 commit
-
-
Yukihiro "Matz" Matsumoto authored
Fixes the twiddle wakka comparison algorithm
-