- 28 Jun, 2021 1 commit
-
-
Yukihiro "Matz" Matsumoto authored
Fixed finding variables from `proc` in `binding.eval` failed
-
- 27 Jun, 2021 1 commit
-
-
Yukihiro "Matz" Matsumoto authored
Fixed finding variables defined in the upper proc failed
-
- 26 Jun, 2021 4 commits
-
-
dearblue authored
Previously the following code did not produce the expected results: ```ruby bx = binding block = bx.eval("a = 1; proc { a }") bx.eval("a = 2") p block.call # Expect 2 but return 1 due to a bug ``` The previous implementation of `Binding#eval` evaluated the code and then merged the top layer variables. This patch will parse and expand the variable space before making a call to `eval`. This means that the call to `Binding#eval` will do the parsing twice. In addition, the following changes will be made: - Make `mrb_parser_foreach_top_variable()`, `mrb_binding_extract_proc()` and `mrb_binding_extract_env()` functions private global functions. - Remove the `posthook` argument from `mrb_exec_irep()`. The `posthook` argument was introduced to implement the `binding` method. This patch is unnecessary because it uses a different implementation method. ref #5362 fixed #5491
-
Yukihiro "Matz" Matsumoto authored
Fix memory leak in `Kernel#eval`
-
dearblue authored
If no new variable was defined in the `eval` method, the variable was hidden from the nested `eval` method. ```ruby a = 1 p eval %(b = 2; eval %(a)) # => 1 (good) p eval %(eval %(a)) # => undefined method 'a' (NoMethodError) ``` This issue has occurred since mruby 3.0.0.
-
dearblue authored
The `mrbc_context` remained unreleased when the `mrb_parse_nstring()` function returned `NULL`.
-
- 25 Jun, 2021 1 commit
-
-
Yukihiro "Matz" Matsumoto authored
-
- 24 Jun, 2021 2 commits
-
-
Yukihiro "Matz" Matsumoto authored
- `Module#method_added` - `BasicObject#singleton_method_added`
-
Yukihiro "Matz" Matsumoto authored
-
- 23 Jun, 2021 2 commits
-
-
Yukihiro "Matz" Matsumoto authored
Add official pre-commit file-contents-sorter
-
John Bampton authored
Remove unneeded bash script sort-codespell-wordlist.sh https://github.com/pre-commit/pre-commit-hooks#file-contents-sorter
-
- 22 Jun, 2021 4 commits
-
-
Yukihiro "Matz" Matsumoto authored
* android_arm64-v8a.rb -> android_arm64_v8a.rb * no-float.rb -> host-nofloat.rb
-
Yukihiro "Matz" Matsumoto authored
Enable markdownlint rules MD003,MD005,MD007
-
Yukihiro "Matz" Matsumoto authored
pre-commit autoupdate
-
-
- 21 Jun, 2021 3 commits
-
-
John Bampton authored
Lint Markdown https://github.com/DavidAnson/markdownlint#rules--aliases
-
Yukihiro "Matz" Matsumoto authored
- `truncate` - `floor` - `ceil` `round` already takes `ndigits`.
-
Yukihiro "Matz" Matsumoto authored
Added `MRB_OBJ_ALLOC()` macro that does not require a cast
-
- 20 Jun, 2021 2 commits
- 19 Jun, 2021 4 commits
-
-
Yukihiro "Matz" Matsumoto authored
-
Yukihiro "Matz" Matsumoto authored
-
dearblue authored
- ` mrb_block_given_p()` -- The name comes from CRuby's `rb_block_given_p ()` At the same time, it applies to `f_instance_eval()` and `f_class_eval()` of `mruby-eval`.
-
Yukihiro "Matz" Matsumoto authored
Enable markdownlint rule MD046 code-block-style
-
- 18 Jun, 2021 2 commits
-
-
John Bampton authored
Fix C Markdown code block style
-
Yukihiro "Matz" Matsumoto authored
Add the rules to the markdownlint config file as comments
-
- 17 Jun, 2021 12 commits
-
-
Yukihiro "Matz" Matsumoto authored
build(deps): bump actions/upload-artifact from 2.2.3 to 2.2.4
-
dependabot[bot] authored
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 2.2.3 to 2.2.4. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v2.2.3...v2.2.4) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by:
dependabot[bot] <support@github.com>
-
Yukihiro "Matz" Matsumoto authored
`mrb_vm_const_get` function looks up the constant first in the base class, so that fallback `const_get` need not to search from the base.
-
Yukihiro "Matz" Matsumoto authored
-
Yukihiro "Matz" Matsumoto authored
```ruby module M FOO = 'm' end class A FOO = 'a' prepend M end class B < A def foo p FOO end end B.new.foo # should print `m` not `a` ```
-
Yukihiro "Matz" Matsumoto authored
-
Yukihiro "Matz" Matsumoto authored
Add two more pre-commit hooks
-
Yukihiro "Matz" Matsumoto authored
Standardize commands inside backticks
-
John Bampton authored
Remove whitespace
-
Yukihiro "Matz" Matsumoto authored
Fix shebang by removing whitespace
-
John Bampton authored
-
John Bampton authored
-
- 16 Jun, 2021 2 commits
-
-
John Bampton authored
Enable MD011 no-reversed-links - Reversed link syntax
-
Yukihiro "Matz" Matsumoto authored
This reverts commit ee301749. I misunderstood something and the new behavior was different from CRuby. The issue was reported by @dearblue, regarding #5478
-