aboutsummaryrefslogtreecommitdiffstats
path: root/parse.y
Commit message (Expand)AuthorAgeFilesLines
* Use `lex_eol_p` familyNobuyoshi Nakada2023-07-261-18/+20
* Supress warning that variable may be used uninitialized with ripper buildingS-H-GAMELINKS2023-07-201-1/+1
* Use functions defined by parser_st.c to reduce dependency on st.cyui-knk2023-07-151-2/+4
* Move some macro for universal parserS-H-GAMELINKS2023-07-091-11/+81
* Move ISASCII defination to parse.yS-H-GAMELINKS2023-07-081-0/+11
* Use `uint_least32_t`Nobuyoshi Nakada2023-07-041-2/+2
* Introduce script_lines function for refactor script_lines_defined and script_...S-H-GAMELINKS2023-07-011-7/+9
* Handle unterminated unicode escapes in regexpsJeremy Evans2023-06-301-34/+63
* Don't check for null pointer in calls to freePeter Zhu2023-06-301-1/+1
* [Bug #19743] All but EOF can be read again after push-backNobuyoshi Nakada2023-06-221-0/+2
* [Bug #19736] Recover after unterminated interpolationNobuyoshi Nakada2023-06-201-1/+5
* Remove coverage_enabled from parser_paramsyui-knk2023-06-181-4/+1
* Specify int bitfield as signed int bitfieldyui-knk2023-06-171-2/+2
* Replace parser & node compile_option from Hash to bit fieldyui-knk2023-06-171-14/+13
* Fix duplicate symbol errors when statically linking ripperNobuyoshi Nakada2023-06-121-1/+1
* [Feature #19719] Universal Parseryui-knk2023-06-121-776/+607
* Rename `rb_node_name` to the original nameyui-knk2023-05-241-2/+2
* Move `ruby_node_name` to node.c and rename prefix of the functionyui-knk2023-05-231-2/+2
* [Bug #19025] Numbered parameter names are always local variablesNobuyoshi Nakada2023-05-141-1/+1
* Add user argument to some macros used by bisonNobuyoshi Nakada2023-05-141-2/+2
* Introduce anddot_multiple_assignment_check functionS-H-GAMELINKS2023-05-141-6/+10
* [Bug #19619] Preserve numbered parameters contextNobuyoshi Nakada2023-05-021-3/+23
* Handle private AREF call in compile.cNobuyoshi Nakada2023-04-301-4/+1
* Get rid of a breakpoint left in parse.yTakashi Kokubun2023-04-101-1/+0
* [Bug #19563] Yield words separators per linesNobuyoshi Nakada2023-04-071-10/+15
* `*` in an array pattern should not be parsed as nil in ripperKazuki Tsujimoto2023-04-011-1/+1
* Fix gc_verify_internal_consistency error for pattern_matching in ripperyui-knk2023-03-311-21/+14
* [Bug #19547] Add token for unescaped backslashNobuyoshi Nakada2023-03-301-0/+1
* [Bug #19175] p_kw without a sub pattern should be `assignable'Kazuki Tsujimoto2023-03-261-1/+1
* [Bug #19175] p_rest should be `assignable'Kazuki Tsujimoto2023-03-261-33/+26
* [Bug #19539] Match heredoc identifier from end of lineNobuyoshi Nakada2023-03-191-10/+10
* Expand tabs in parse.yTakashi Kokubun2023-03-091-7361/+7361
* Suppress -Wunused-but-set-variable warningNobuyoshi Nakada2023-02-141-0/+1
* Extract body rules from endless method definitionsNobuyoshi Nakada2023-02-011-64/+36
* Remove not used argument from tokenize_identyui-knk2023-01-251-4/+4
* Fix format specifiers for pointer differencesNobuyoshi Nakada2023-01-071-3/+16
* [Bug #19312] Return end-of-input at `__END__`Nobuyoshi Nakada2023-01-061-7/+5
* [Bug #19291] Rewind to the previous lineNobuyoshi Nakada2023-01-021-4/+13
* EXPR_DOT is set when next token is tANDDOT ("&.") [ci skip]yui-knk2022-12-261-1/+1
* Disallow mixed usage of ... and */**Shugo Maeda2022-12-151-6/+26
* [Bug #19195] Allow optional newlines before closing parenthesisNobuyoshi Nakada2022-12-131-1/+1
* Use loc to fix a failure of test_ast.rbShugo Maeda2022-12-051-1/+1
* Should use argsloc for the last argument for arg_append()Shugo Maeda2022-12-051-2/+2
* Introduce encoding check macroS-H-GAMELINKS2022-12-021-3/+4
* Remove ruby2_keywords related to args forwardingyui-knk2022-11-291-2/+0
* Use idFWD_* instead of ANON_*_IDShugo Maeda2022-11-291-18/+14
* Allow ** in def foo(...)Shugo Maeda2022-11-291-16/+4
* Fix the position of rescue clause without exc_listJeremy Evans2022-11-241-1/+10
* Refactor to use has_delayed_token macroyui-knk2022-11-211-1/+1
* Enhance keep_tokens option for RubyVM::AbstractSyntaxTree parsing methodsyui-knk2022-11-211-61/+419