aboutsummaryrefslogtreecommitdiffstats
path: root/parse.y
Commit message (Collapse)AuthorAgeFilesLines
* Make anonymous rest arg (*) and block arg (&) accessible from ARGS nodeyui-knk2022-11-181-4/+7
|
* Allow anonymous keyword rest parameter with other keyword parametersShugo Maeda2022-11-181-1/+1
| | | | Fixes [Bug #19132]
* Using UNDEF_P macroS-H-GAMELINKS2022-11-161-6/+6
|
* Now bison 3.0 or later is requiredNobuyoshi Nakada2022-11-091-0/+2
|
* Set default %printer for NODE ntermsyui-knk2022-11-081-0/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Before: ``` Reducing stack by rule 639 (line 5062): $1 = token "integer literal" (1.0-1.1: 1) -> $$ = nterm simple_numeric (1.0-1.1: ) ``` After: ``` Reducing stack by rule 641 (line 5078): $1 = token "integer literal" (1.0-1.1: 1) -> $$ = nterm simple_numeric (1.0-1.1: NODE_LIT) ``` `"<*>"` is supported by Bison 2.3b (2008-05-27) or later. https://git.savannah.gnu.org/cgit/bison.git/commit/?id=12e3584054c16ab255672c07af0ffc7bb220e8bc Therefore developers need to install Bison 2.3b+ to build ruby from source codes if their Bison is older. Minimum version requirement for Bison is changed to 3.0. See: https://bugs.ruby-lang.org/issues/19068 [Feature #19068]
* Do not set `$!` to `SyntaxError` when error tolerantNobuyoshi Nakada2022-10-091-1/+1
|
* Fix typosyui-knk2022-10-081-37/+37
|
* Fix SEGV of dump parsetreeyui-knk2022-10-081-0/+3
| | | | | | | | | Assign internal_id to semantic value so that dump parsetree option can render the tree for these codes without SEGV. * `def m(&); end` * `def m(*); end` * `def m(**); end`
* "expr_value" can be erroryui-knk2022-10-081-0/+6
| | | | | | | | | | | | So that "IF" node is kept in the case below ``` def m if end ``` [Feature #19013]
* Move `error` from top_stmts and top_stmt to stmtyui-knk2022-10-081-8/+6
| | | | | | | | | | | | | | | | | | | By this change, syntax error is recovered smaller units. In the case below, "DEFN :bar" is same level with "CLASS :Foo" now. ``` module Z class Foo foo. end def bar end end ``` [Feature #19013]
* Treat "end" as reserved word with consideration of indentyui-knk2022-10-081-1/+36
| | | | | | | | | | | | | | | | | | | | "end" after "." or "::" is treated as local variable or method, see `EXPR_DOT_bit` for detail. However this "changes" where `bar` method is defined. In the example below it is not module Z but class Foo. ``` module Z class Foo foo. end def bar end end ``` [Feature #19013]
* Generates "end" tokens if parser hits end of inputyui-knk2022-10-081-6/+105
| | | | | | but "end" tokens are needed for correct language. [Feature #19013]
* Add error_tolerant option to RubyVM::ASTyui-knk2022-10-081-1/+14
| | | | | | | If this option is enabled, SyntaxError is not raised and Node is returned even if passed script is broken. [Feature #19013]
* Suppress a warning on clangShugo Maeda2022-09-261-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | The following warning appears without this fix: ``` parse.y:78:1: warning: unknown warning group '-Wpsabi', ignored [-Wunknown-warning-option] RBIMPL_WARNING_IGNORED(-Wpsabi) ^ ./include/ruby/internal/warning_push.h:103:39: note: expanded from macro 'RBIMPL_WARNING_IGNORED' ^ ./include/ruby/internal/warning_push.h:99:39: note: expanded from macro 'RBIMPL_WARNING_PRAGMA2' ^ ./include/ruby/internal/warning_push.h:98:39: note: expanded from macro 'RBIMPL_WARNING_PRAGMA1' ^ ./include/ruby/internal/warning_push.h:97:39: note: expanded from macro 'RBIMPL_WARNING_PRAGMA0' ^ <scratch space>:49:27: note: expanded from here clang diagnostic ignored "-Wpsabi" ^ 1 warning generated. ```
* Reuse `opt_arg_append` functionS.H2022-09-141-7/+1
|
* Fix unexpected "duplicated key name" error in paren-less one line pattern ↵Kazuki Tsujimoto2022-09-091-4/+12
| | | | | | matching [Bug #18990]
* [Bug #18963] Separate string contents by here document terminatorNobuyoshi Nakada2022-08-281-0/+13
|
* Reuse `nonlocal_var` patternsS.H2022-08-221-6/+2
|
* Reuse opt_nl ruleS-H-GAMELINKS2022-08-191-2/+1
|
* Repalce to NIL_P macroS-H-GAMELINKS2022-08-191-1/+1
|
* [Bug #18962] Do not read again once reached EOFNobuyoshi Nakada2022-08-121-0/+1
| | | | | | | `Ripper::Lexer#parse` re-parses the source code with syntax errors when `raise_errors: false`. Co-Authored-By: tompng <tomoyapenguin@gmail.com>
* Fix some UBSAN false positives (#6115)Kevin Backhouse2022-07-121-3/+3
| | | | * Fix some UBSAN false positives. * ruby tool/update-deps --fix
* [Bug #18890] newline should be insignificant after pattern labelNobuyoshi Nakada2022-07-061-1/+1
|
* [Bug #18877] Let `lex_ctxt` not to eat escaped whitespaceNobuyoshi Nakada2022-06-301-5/+1
|
* [Bug #18884] `class` cannot be just followed by modifiersNobuyoshi Nakada2022-06-291-1/+1
|
* Suppress notes for old gccNobuyoshi Nakada2022-06-231-0/+10
|
* Using is_ascii_string to check encodingS-H-GAMELINKS2022-06-171-4/+4
|
* Respect the encoding of the source [Bug #18827]Nobuyoshi Nakada2022-06-171-10/+16
| | | | | Do not override the input string encoding at the time of preparation, the source encoding is not determined from the input yet.
* Remove unnecessary conditionNobuyoshi Nakada2022-06-151-1/+1
| | | | `no_blockarg` is called for non-null `node` only.
* ripper: Check if anonymous parameters defined [Bug #18828]Nobuyoshi Nakada2022-06-141-13/+11
|
* Ignore invalid escapes in regexp commentsJeremy Evans2022-06-061-11/+15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Invalid escapes are handled at multiple levels. The first level is in parse.y, so skip invalid unicode escape checks for regexps in parse.y. Make rb_reg_preprocess and unescape_nonascii accept the regexp options. In unescape_nonascii, if the regexp is an extended regexp, when "#" is encountered, ignore all characters until the end of line or end of regexp. Unfortunately, in extended regexps, you can use "#" as a non-comment character inside a character class, so also parse "[" and "]" specially for extended regexps, and only skip comments if "#" is not inside a character class. Handle nested character classes as well. This issue doesn't just affect extended regexps, it also affects "(#?" comments inside all regexps. So for those comments, scan until trailing ")" and ignore content inside. I'm not sure if there are other corner cases not handled. A better fix would be to redesign the regexp parser so that it unescaped during parsing instead of before parsing, so you already know the current parsing state. Fixes [Bug #18294] Co-authored-by: Nobuyoshi Nakada <nobu@ruby-lang.org>
* Private local variables should shadow outer variables [Bug #18629]Nobuyoshi Nakada2022-04-211-1/+2
|
* Fix the wrong index of the previous component [Bug #18739]Nobuyoshi Nakada2022-04-181-1/+1
|
* Fix using anonymous block in method accepting explicit keywordsJeremy Evans2022-04-051-0/+1
| | | | | | | Record block ID before vtable_pop, so the incorrect one doesn't override it. Fixes [Bug #18673]
* Find pattern is no longer experimental [Feature #18585]Kazuki Tsujimoto2022-02-191-3/+0
|
* Fix location of NODE_LIT in p_kwKazuki Tsujimoto2022-02-191-1/+1
|
* Reuse operation rule for operation2S-H-GAMELINKS2022-02-121-3/+1
|
* Reuse p_kwnorest rule for f_no_kwargS-H-GAMELINKS2022-02-121-1/+1
|
* Reduce p_args rules with p_restVladimir Dementyev2022-01-111-12/+4
|
* Use chomp: option when chomp modeNobuyoshi Nakada2022-01-071-3/+3
| | | | | Get rid of depending on using $/ internally in String#chomp!, and chomp the separator at once.
* Explicitly pass $/ when loop modeNobuyoshi Nakada2022-01-071-1/+3
| | | | Get rid of depending on using $/ internally in ARGF.gets.
* Add support for anonymous rest and keyword rest argument forwardingJeremy Evans2021-12-301-4/+35
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This allows for the following syntax: ```ruby def foo(*) bar(*) end def baz(**) quux(**) end ``` This is a natural addition after the introduction of anonymous block forwarding. Anonymous rest and keyword rest arguments were already supported in method parameters, this just allows them to be used as arguments to other methods. The same advantages of anonymous block forwarding apply to rest and keyword rest argument forwarding. This has some minor changes to #parameters output. Now, instead of `[:rest], [:keyrest]`, you get `[:rest, :*], [:keyrest, :**]`. These were already used for `...` forwarding, so I think it makes it more consistent to include them in other cases. If we want to use `[:rest], [:keyrest]` in both cases, that is also possible. I don't think the previous behavior of `[:rest], [:keyrest]` in the non-... case and `[:rest, :*], [:keyrest, :**]` in the ... case makes sense, but if we did want that behavior, we'll have to make more substantial changes, such as using a different ID in the ... forwarding case. Implements [Feature #18351]
* Add `rb_parser_set_pos` functionS.H2021-12-161-15/+19
| | | | Co-authored-by: Nobuyoshi Nakada <nobu@ruby-lang.org> Co-authored-by: Marivaldo Cavalheiro <marivaldo@gmail.com>
* Fix arg_forward without parentheses [Bug #18267]Nobuyoshi Nakada2021-12-151-9/+31
|
* Revert "Rename `in_kwarg` as `in_argdef` as unrelated to keywords"Nobuyoshi Nakada2021-12-151-12/+12
| | | | | This reverts commit b7f7117bdc78a4a342a57dad1a340b158492ccf3, to separate `in_argdef` from `in_kwarg`.
* Turn SET_LEX_STATE macro into an inline function callNobuyoshi Nakada2021-12-151-4/+10
|
* Fix indent [ci skip]Nobuyoshi Nakada2021-12-151-1/+1
|
* Remove `NODE_DASGN_CURR` [Feature #18406]Nobuyoshi Nakada2021-12-131-9/+3
| | | | | | | This `NODE` type was used in pre-YARV implementation, to improve the performance of assignment to dynamic local variable defined at the innermost scope. It has no longer any actual difference with `NODE_DASGN`, except for the node dump.
* Add `nd_type_p` macroS.H2021-12-041-50/+50
|
* Assign temporary ID to anonymous ID [Bug #18250]Nobuyoshi Nakada2021-11-231-4/+1
| | | | | | | | Dumped iseq binary can not have unnamed symbols/IDs, and ID 0 is stored instead. As `struct rb_id_table` disallows ID 0, also for the distinction, re-assign a new temporary ID based on the local variable table index when loading from the binary, as well as the parser.