- 16 Sep, 2021 1 commit
-
-
Yukihiro "Matz" Matsumoto authored
-
- 15 Sep, 2021 1 commit
-
-
Yukihiro "Matz" Matsumoto authored
-
- 14 Sep, 2021 1 commit
-
-
Yukihiro "Matz" Matsumoto authored
Now `width` is limited to `INT16_MIN..INT16_MAX`.
-
- 13 Sep, 2021 3 commits
-
-
Yukihiro "Matz" Matsumoto authored
-
Yukihiro "Matz" Matsumoto authored
For example, `{p:}` (means `{p:p}`) and `{String:}` (`{String:String}`) should be allowed like CRuby.
-
Yukihiro "Matz" Matsumoto authored
`{x:, y:}` now is a syntax sugar of `{x: x, y: y}`. This fix also includes the update of #4815 fix.
-
- 12 Sep, 2021 1 commit
-
-
Yukihiro "Matz" Matsumoto authored
-
- 11 Sep, 2021 2 commits
-
-
Yukihiro "Matz" Matsumoto authored
-
Yukihiro "Matz" Matsumoto authored
-
- 10 Sep, 2021 11 commits
-
-
Yukihiro "Matz" Matsumoto authored
-
Yukihiro "Matz" Matsumoto authored
-
Yukihiro "Matz" Matsumoto authored
-
Yukihiro "Matz" Matsumoto authored
-
Yukihiro "Matz" Matsumoto authored
`acc` was used as an index of the receiver (if positive), or a flag for methods implemented in C. We replace `regs[ci->acc]` by `ci[1].stack[0]`. And renamed `acc` (originally meant accumulator position) to `cci` (means callinfo for C implemented method).
-
Yukihiro "Matz" Matsumoto authored
The pool specified by `OP_STRING` (and `OP_SYMBOL`) should represent a string, so that `IREP_TT_NFLAG` should be zero.
-
Yukihiro "Matz" Matsumoto authored
It generates a symbol by interning from the pool string.
-
Yukihiro "Matz" Matsumoto authored
-
Yukihiro "Matz" Matsumoto authored
When parsing scripts frequent scans could cost too much.
-
Yukihiro "Matz" Matsumoto authored
-
Yukihiro "Matz" Matsumoto authored
build(deps): bump github/super-linter from 4.7.2 to 4.7.3
-
- 09 Sep, 2021 7 commits
-
-
dependabot[bot] authored
Bumps [github/super-linter](https://github.com/github/super-linter) from 4.7.2 to 4.7.3. - [Release notes](https://github.com/github/super-linter/releases) - [Changelog](https://github.com/github/super-linter/blob/master/docs/release-process.md) - [Commits](https://github.com/github/super-linter/compare/v4.7.2...v4.7.3) --- updated-dependencies: - dependency-name: github/super-linter dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
-
Yukihiro "Matz" Matsumoto authored
-
Yukihiro "Matz" Matsumoto authored
-
Yukihiro "Matz" Matsumoto authored
-
Yukihiro "Matz" Matsumoto authored
- `MRB_USE_ETEXT_RO_DATA_P`: use `etext` and `edata` - `MRB_NO_DEFAULT_RO_DATA_P`: not use the default `mrb_ro_data_p()`
-
Yukihiro "Matz" Matsumoto authored
`mrb_ro_data_p()` is available anyway.
-
Yukihiro "Matz" Matsumoto authored
-
- 08 Sep, 2021 2 commits
-
-
Yukihiro "Matz" Matsumoto authored
build(deps): bump github/super-linter from 4.7.1 to 4.7.2
-
dependabot[bot] authored
Bumps [github/super-linter](https://github.com/github/super-linter) from 4.7.1 to 4.7.2. - [Release notes](https://github.com/github/super-linter/releases) - [Changelog](https://github.com/github/super-linter/blob/master/docs/release-process.md) - [Commits](https://github.com/github/super-linter/compare/v4.7.1...v4.7.2) --- updated-dependencies: - dependency-name: github/super-linter dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
-
- 07 Sep, 2021 4 commits
-
-
Yukihiro "Matz" Matsumoto authored
-
Yukihiro "Matz" Matsumoto authored
-
Yukihiro "Matz" Matsumoto authored
Consistent naming: `integer` to represent integer packed in `mrb_value` instead of `int`.
-
Yukihiro "Matz" Matsumoto authored
Consistent naming: `integer` to represent integer packed in `mrb_value` instead of `inum`.
-
- 06 Sep, 2021 6 commits
-
-
Yukihiro "Matz" Matsumoto authored
`eval` would have crashed in formatting.
-
Yukihiro "Matz" Matsumoto authored
It should be lexx than `UINT16_MAX`. If you don't check here, the parser would raise an exception.
-
Yukihiro "Matz" Matsumoto authored
- remove `mrb_jmpbuf` from `codegen_scope` - unify exception handling of `mrb_state` and `codegen_scope`
-
Yukihiro "Matz" Matsumoto authored
- remove `mrb_jmpbuf` from `truct mrb_parser_state` - unify exception handling of `mrb_state` and `mrb_parser_state`.
-
Yukihiro "Matz" Matsumoto authored
-
Yukihiro "Matz" Matsumoto authored
-
- 05 Sep, 2021 1 commit
-
-
Yukihiro "Matz" Matsumoto authored
-