ruby-core@ruby-lang.org archive (unofficial mirror)
 help / color / mirror / Atom feed
* [ruby-core:117496] [Ruby master Bug#20423] Anonymous block forwarding shouldn't work with ... but it does
@ 2024-04-11 18:39 tenderlovemaking (Aaron Patterson) via ruby-core
  2024-04-12  7:30 ` [ruby-core:117502] " nobu (Nobuyoshi Nakada) via ruby-core
  0 siblings, 1 reply; 2+ messages in thread
From: tenderlovemaking (Aaron Patterson) via ruby-core @ 2024-04-11 18:39 UTC (permalink / raw)
  To: ruby-core; +Cc: tenderlovemaking (Aaron Patterson)

Issue #20423 has been reported by tenderlovemaking (Aaron Patterson).

----------------------------------------
Bug #20423: Anonymous block forwarding shouldn't work with ... but it does
https://bugs.ruby-lang.org/issues/20423

* Author: tenderlovemaking (Aaron Patterson)
* Status: Open
* Backport: 3.0: UNKNOWN, 3.1: UNKNOWN, 3.2: UNKNOWN, 3.3: UNKNOWN
----------------------------------------
According to [this note](https://bugs.ruby-lang.org/issues/11256#note-16), anonymous block forwarding should only be supported when explicitly used in the method signature.

For example:

```ruby
def foo(&) = bar(&) # OK
def foo = bar(&)    # NG
```

However, if you use `...` in the method signature, `&` seems to work:

```ruby
def foo(...)
  # bar(*) # Syntax Error
  # bar(**) # Syntax Error
  bar(&) # not a syntax error, but I think it should be
end
```

I think this should be a syntax error.



-- 
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/postorius/lists/ruby-core.ml.ruby-lang.org/

^ permalink raw reply	[flat|nested] 2+ messages in thread

* [ruby-core:117502] [Ruby master Bug#20423] Anonymous block forwarding shouldn't work with ... but it does
  2024-04-11 18:39 [ruby-core:117496] [Ruby master Bug#20423] Anonymous block forwarding shouldn't work with ... but it does tenderlovemaking (Aaron Patterson) via ruby-core
@ 2024-04-12  7:30 ` nobu (Nobuyoshi Nakada) via ruby-core
  0 siblings, 0 replies; 2+ messages in thread
From: nobu (Nobuyoshi Nakada) via ruby-core @ 2024-04-12  7:30 UTC (permalink / raw)
  To: ruby-core; +Cc: nobu (Nobuyoshi Nakada)

Issue #20423 has been updated by nobu (Nobuyoshi Nakada).


https://github.com/ruby/ruby/pull/10514

----------------------------------------
Bug #20423: Anonymous block forwarding shouldn't work with ... but it does
https://bugs.ruby-lang.org/issues/20423#change-107889

* Author: tenderlovemaking (Aaron Patterson)
* Status: Open
* Backport: 3.0: UNKNOWN, 3.1: UNKNOWN, 3.2: UNKNOWN, 3.3: UNKNOWN
----------------------------------------
According to [this note](https://bugs.ruby-lang.org/issues/11256#note-16), anonymous block forwarding should only be supported when explicitly used in the method signature.

For example:

```ruby
def foo(&) = bar(&) # OK
def foo = bar(&)    # NG
```

However, if you use `...` in the method signature, `&` seems to work:

```ruby
def foo(...)
  # bar(*) # Syntax Error
  # bar(**) # Syntax Error
  bar(&) # not a syntax error, but I think it should be
end
```

I think this should be a syntax error.



-- 
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/postorius/lists/ruby-core.ml.ruby-lang.org/

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2024-04-12  7:30 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-04-11 18:39 [ruby-core:117496] [Ruby master Bug#20423] Anonymous block forwarding shouldn't work with ... but it does tenderlovemaking (Aaron Patterson) via ruby-core
2024-04-12  7:30 ` [ruby-core:117502] " nobu (Nobuyoshi Nakada) via ruby-core

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 read-only IMAP folder(s) and NNTP newsgroup(s).