index
:
mruby
master
mruby2-draft
removing-y-tab-c
revert-5391-throw
stable
web_export
Lightweight Ruby
realtradam
summary
refs
log
tree
commit
diff
homepage
log msg
author
committer
range
path:
root
/
mrbgems
/
mruby-compiler
/
core
/
parse.y
Age
Commit message (
Expand
)
Author
2020-10-15
Merge branch 'work_for_merge' of https://github.com/zubycz/mruby into zubycz-...
Yukihiro "Matz" Matsumoto
2020-10-15
Fix out of bound access in `parse.y`.
Yukihiro "Matz" Matsumoto
2020-10-13
Introduce endless range (a part of #5085)
taiyoslime
2020-10-12
Avoid `unsigned int`; Use `mrb_int` instead.
Yukihiro "Matz" Matsumoto
2020-10-12
Raname `mrb_exc_new_str_lit()` to `mrb_exc_new_lit()`.
Yukihiro "Matz" Matsumoto
2020-10-12
Make `Proc#parameters` to support keyword arguments; fix #5066
Yukihiro "Matz" Matsumoto
2020-10-12
Rename float configuration option names.
Yukihiro "Matz" Matsumoto
2020-10-12
You don't need to keep index in local variables info in `irep`.
Yukihiro "Matz" Matsumoto
2020-10-12
Allow `rescue` modifier in endless method definitions.
Yukihiro "Matz" Matsumoto
2020-10-12
Implement endless-def as in CRuby [Feature#16746].
Yukihiro "Matz" Matsumoto
2020-10-12
Rightward-assign by ASSOC.
Yukihiro "Matz" Matsumoto
2020-10-12
Generate C struct from `irep` instead of binary dump.
Yukihiro "Matz" Matsumoto
2020-10-12
Rename `struct mrb_locals` to `struct mrb_lvinfo`.
Yukihiro "Matz" Matsumoto
2020-10-12
Constify `irep` members.
Yukihiro "Matz" Matsumoto
2020-10-12
Use more `MRB_QSYM()`.
Yukihiro "Matz" Matsumoto
2020-10-12
Use `MRB_QSYM()` instead of `MRB_OPSYM()`.
Yukihiro "Matz" Matsumoto
2020-10-12
Use `MRB_OPSYM()` instead of `mrb_intern_lit()`.
Yukihiro "Matz" Matsumoto
2020-10-12
Add `MRB_SYM()` for inline symbols.
Yukihiro "Matz" Matsumoto
2020-09-10
Merge pull request #4933 from dearblue/variables
Yukihiro "Matz" Matsumoto
2020-08-11
Fix `mrb_int` and `size_t` combination warnings.
Yukihiro "Matz" Matsumoto
2020-06-05
Change arena index from `mrb_int` to `int`.
Yukihiro "Matz" Matsumoto
2020-06-02
Remove `patch_irep()` in `mruby-eval`
dearblue
2020-05-15
Remove `YYERROR_VERBOSE` which no longer supported since `bison 3.6`.
Yukihiro "Matz" Matsumoto
2020-05-07
Fix wrong line number before comment line; fix #4993
Yukihiro "Matz" Matsumoto
2020-04-27
Updating `parse.y for recent `bison` (retry).
Yukihiro "Matz" Matsumoto
2020-04-27
Revert "Change obsolete `%pure-parser` to `%define api.pure`."
Yukihiro "Matz" Matsumoto
2020-04-27
Change obsolete `%pure-parser` to `%define api.pure`.
Yukihiro "Matz" Matsumoto
2020-04-25
Implemented argument forwarding by `...`
Yukihiro "Matz" Matsumoto
2020-04-01
Avoid unnecessary `nextc()` recursion.
Yukihiro "Matz" Matsumoto
2020-01-19
Add `mrbc_cleanup_local_variables()` with `mrbc_context`; ref #4931
dearblue
2020-01-08
`p->locals` may be `NULL` when error occurs before the point.
Yukihiro "Matz" Matsumoto
2020-01-01
Allow `here-doc` in the middle of Hash expressions; fix #4815
Yukihiro "Matz" Matsumoto
2019-12-27
Prohibit assignment to numbered parameters.
Yukihiro "Matz" Matsumoto
2019-12-27
Allow non numbered-parameter identifier like `_1` outside of blocks.
Yukihiro "Matz" Matsumoto
2019-12-27
Numbered parameters: usually linked list uses `cdr` for links.
Yukihiro "Matz" Matsumoto
2019-12-27
Prohibit numbered parameters as method arguments; fix #4892
Yukihiro "Matz" Matsumoto
2019-12-23
Handle CR LF newline natively in lexer
take-cheeze
2019-12-21
Numbered parameters should not be available in the lambda bodies.
Yukihiro "Matz" Matsumoto
2019-12-21
`_0` is not numbered parameter
KOBAYASHI Shuji
2019-12-21
Fix SEGV from numbered parameters outside of blocks; fix #4862
Yukihiro "Matz" Matsumoto
2019-12-09
Warnings for numbered parameters in nested blocks.
Yukihiro "Matz" Matsumoto
2019-12-09
Parser refactoring on numbered parameters.
Yukihiro "Matz" Matsumoto
2019-12-09
Support new numbered parameter syntax `_1` instead of `@1`.
Yukihiro "Matz" Matsumoto
2019-12-09
Implement numbered parameters
Ukrainskiy Sergey
2019-11-19
Always enable the rational and complex literals
KOBAYASHI Shuji
2019-11-14
Fix here document with EOF
KOBAYASHI Shuji
2019-11-13
Use `mrb_intern_lit` if possible in `parse.y`
KOBAYASHI Shuji
2019-11-12
Use `intern` instead of `intern_cstr` if possible in `parse.y`
KOBAYASHI Shuji
2019-11-08
Fixed a bug in keyword arguments in block parameters; fix #4810
Yukihiro "Matz" Matsumoto
2019-11-08
Allow here-doc before closing parentheses; ref #4796
Yukihiro "Matz" Matsumoto
[next]