- 13 Jun, 2019 3 commits
-
-
KOBAYASHI Shuji authored
Before this patch: $ bin/mruby -e 'p Struct.new("A-")' #=> Struct::"A-" After this patch: $ bin/mruby -e 'p Struct.new("A-")' #=> NameError: identifier A- needs to be constant
-
Yukihiro "Matz" Matsumoto authored
`Kernel#global_variables` should not include undefined `$1`-`$9`
-
Yukihiro "Matz" Matsumoto authored
Fix typo in `String#setbyte` error message
-
- 12 Jun, 2019 1 commit
-
-
KOBAYASHI Shuji authored
-
- 11 Jun, 2019 3 commits
-
-
Yukihiro "Matz" Matsumoto authored
Remove redundant colon in `Proc#inspect` (`mruby-proc-ext`)
-
KOBAYASHI Shuji authored
Before this patch: $ bin/mruby -e 'p proc{}' #=> #<Proc:0x7fd5eb8206d0@-e::1> After this patch: $ bin/mruby -e 'p proc{}' #=> #<Proc:0x7fd5eb8206d0@-e:1>
-
Yukihiro "Matz" Matsumoto authored
Replace obsolete macros
-
- 10 Jun, 2019 4 commits
-
-
KOBAYASHI Shuji authored
- They are not include in Ruby. - Appear in duplicate when `$1`-`$9` are defined.
-
Yukihiro "Matz" Matsumoto authored
Remove `Kernel#global_variables` from core
-
Yukihiro "Matz" Matsumoto authored
Clarify `mruby-(kernel|object)-ext` gem summary; ref 8e637bdd [ci skip]
-
Yukihiro "Matz" Matsumoto authored
Fix missing assertions in `test/t/syntax.rb`
-
- 09 Jun, 2019 1 commit
-
-
KOBAYASHI Shuji authored
-
- 08 Jun, 2019 2 commits
-
-
Yukihiro "Matz" Matsumoto authored
Remove "Check the usage of a NUL character" test
-
KOBAYASHI Shuji authored
Because there is not assertion in this test and NUL character literal is used in other tests.
-
- 07 Jun, 2019 2 commits
-
-
dearblue authored
-
KOBAYASHI Shuji authored
This method is defined in `mruby-metaprog` gem.
-
- 06 Jun, 2019 1 commit
-
-
KOBAYASHI Shuji authored
-
- 05 Jun, 2019 2 commits
-
-
Yukihiro "Matz" Matsumoto authored
Fix missing assertions in `test/t/module.rb`
-
KOBAYASHI Shuji authored
-
- 04 Jun, 2019 4 commits
-
-
Yukihiro "Matz" Matsumoto authored
Fix typo in `mrblib/range.rb` [ci skip]
-
Yukihiro "Matz" Matsumoto authored
Need explicit cast for C++
-
dearblue authored
-
KOBAYASHI Shuji 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 2 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.
-