From: "zverok (Victor Shepelev) via ruby-core" <ruby-core@ml.ruby-lang.org>
To: ruby-core@ml.ruby-lang.org
Cc: "zverok (Victor Shepelev)" <noreply@ruby-lang.org>
Subject: [ruby-core:120327] [Ruby master Bug#20970] `it /1/i` raises undefined method 'it' for main (NoMethodError) even if binding.local_variables includes `it`
Date: Thu, 19 Dec 2024 10:57:58 +0000 (UTC) [thread overview]
Message-ID: <redmine.journal-111099.20241219105758.10330@ruby-lang.org> (raw)
In-Reply-To: <redmine.issue-20970.20241219085942.10330@ruby-lang.org>
Issue #20970 has been updated by zverok (Victor Shepelev).
Interesting. Before the change (on `3.4.0dev (2024-12-15T13:36:38Z master 366fd9642f)`) it was an error both with Prism and parse.y:
```bash
$ ruby -e "i = 2; [1, 2, 3].each { it /1/i }"
-e:1:in 'block in <main>': undefined method 'it' for main (NoMethodError)
$ ruby --parser=parse.y -e "i = 2; [1, 2, 3].each { it /1/i }"
-e:1:in 'block in <main>': undefined method 'it' for main (NoMethodError)
```
As far as I can guess (by IRB syntax highlighting), `it /1/i` parses at once as `it(/1/i)` (with `/1/i` treated as a regexp literal). Reproduced in other ambiguous cases (that are resolved by local name presence, for all I can understand), say:
```bash
ruby -e "[1, 2, 3].each { it + 1 }"
#=> OK
$ ruby -e "[1, 2, 3].each { it +1 }"
-e:1:in 'block in <main>': undefined method 'it' for main (NoMethodError)
$ ruby -e "[1, 2, 3].each { |it| it +1 }"
#=> OK
```
I.e., ambiguous operators parsing decisions are made based on whether `it` is known to be a local var (then it is `it.+(1)`), or not known (then it is tentatively considered `it(+1)`).
----------------------------------------
Bug #20970: `it /1/i` raises undefined method 'it' for main (NoMethodError) even if binding.local_variables includes `it`
https://bugs.ruby-lang.org/issues/20970#change-111099
* Author: tompng (tomoya ishida)
* Status: Open
* ruby -v: ruby 3.4.0dev (2024-12-19T07:16:12Z master 335bba0fde) +PRISM [x86_64-linux]
* Backport: 3.1: UNKNOWN, 3.2: UNKNOWN, 3.3: UNKNOWN
----------------------------------------
`it` parameter became a local variable with #20965, but it does not behave like local variable with `--parser=prism`
~~~ruby
i=2
42.tap do
p it # 42
p local_variables # [:it, :i]
p it /1/i # should be 21, got NoMethodError
end
~~~
It prints `42`, `[:it, :i], `21` with `--parser=parse.y`
--
https://bugs.ruby-lang.org/
______________________________________________
ruby-core mailing list -- ruby-core@ml.ruby-lang.org
To unsubscribe send an email to ruby-core-leave@ml.ruby-lang.org
ruby-core info -- https://ml.ruby-lang.org/mailman3/lists/ruby-core.ml.ruby-lang.org/
next prev parent reply other threads:[~2024-12-19 10:58 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-12-19 8:59 [ruby-core:120325] " tompng (tomoya ishida) via ruby-core
2024-12-19 10:57 ` zverok (Victor Shepelev) via ruby-core [this message]
2024-12-19 17:17 ` [ruby-core:120330] " alanwu (Alan Wu) via ruby-core
2024-12-20 5:28 ` [ruby-core:120340] " tompng (tomoya ishida) via ruby-core
2024-12-20 18:16 ` [ruby-core:120348] " alanwu (Alan Wu) via ruby-core
2024-12-20 23:15 ` [ruby-core:120349] " k0kubun (Takashi Kokubun) via ruby-core
2024-12-21 18:47 ` [ruby-core:120356] " kddnewton (Kevin Newton) via ruby-core
2024-12-21 22:01 ` [ruby-core:120358] " k0kubun (Takashi Kokubun) via ruby-core
2024-12-23 4:51 ` [ruby-core:120370] " k0kubun (Takashi Kokubun) via ruby-core
2024-12-24 12:52 ` [ruby-core:120393] " Eregon (Benoit Daloze) via ruby-core
2024-12-24 17:32 ` [ruby-core:120398] " k0kubun (Takashi Kokubun) via ruby-core
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=redmine.journal-111099.20241219105758.10330@ruby-lang.org \
--to=ruby-core@ml.ruby-lang.org \
--cc=noreply@ruby-lang.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).