Takuya Aramaki
Takuya Aramaki
Here's one more problem similar to above: ```console $ ruby -e 'def f(_, *, _) _ end; p f(1, 2, 3)' 1 $ bin/opal -e 'def f(_, *, _) _...
Node.js implements `atob` / `btoa` since v16.0. https://developer.mozilla.org/en-US/docs/Web/API/atob#browser_compatibility Probably we can merge this now?
The root cause seems to be confusing `m` flag of Ruby and JavaScript. Actually `m` flag of Ruby only changes the semantics of `.` and does not change `^` or...
This will work in most cases, but there is an edge case: ```console $ bin/opal -e 'loop(&-> { return })' /tmp/opal-system-runner20231004-47362-rqbq0f.js:5473 } else { throw $err; } ^ { '$thrower_type':...
This can be fixed by `Proc#call`. However, considering there are many `block()` calls in corelib codes, maybe it's better to make lambda function handle the thrower by itself rather than...
The behavior was actually changed twice. PHP 8.0 changed the array's auto index behavior with [this RFC](https://wiki.php.net/rfc/negative_array_index). However the patch missed some cases, reported in https://github.com/php/php-src/issues/11154 . So the bug...
KofamScan does not take E-value into account by default. Any hits with its score higher than the threshold will be marked with asterisks regardless of its E-value.
I don't have any specific parameters to recommend. It depends on your purpose. If you'd like to reduce false positive hits, you might want stricter parameters. If you need fewer...
[v2.73.0](https://github.com/cli/cli/releases/tag/v2.73.0) added support for `--add-assignee @copilot`. For consistency, I believe the solution for this issue should be adding `--add-reviewer @copilot` support for `gh pr create/edit`.
I did some experiment with this branch, and found some problems. ### 1. `Dir.glob` returns an empty array when there are directories the user cannot access A simple pattern like...