[#81999] [Ruby trunk Bug#13737] "can't modify frozen String" when installing bundled gems — ko1@...
Issue #13737 has been updated by ko1 (Koichi Sasada).
4 messages
2017/07/11
[#82005] [Ruby trunk Bug#13737] "can't modify frozen String" when installing bundled gems — nobu@...
Issue #13737 has been updated by nobu (Nobuyoshi Nakada).
3 messages
2017/07/12
[#82102] Re: register_fstring_tainted:FL_TEST_RAW(str, RSTRING_FSTR) — Eric Wong <normalperson@...>
Koichi Sasada <ko1@atdot.net> wrote:
4 messages
2017/07/18
[#82151] [Ruby trunk Feature#13637] [PATCH] tool/runruby.rb: test with smallest possible machine stack — Rei.Odaira@...
Issue #13637 has been updated by ReiOdaira (Rei Odaira).
3 messages
2017/07/24
[ruby-core:82135] [Ruby trunk Bug#11873] Syntax error and parse problem when calling a method without parentheses
From:
nagachika00@...
Date:
2017-07-23 08:16:09 UTC
List:
ruby-core #82135
Issue #11873 has been updated by nagachika (Tomoyuki Chikanaga).
Backport changed from 2.2: DONTNEED, 2.3: DONTNEED, 2.4: REQUIRED to 2.2: DONTNEED, 2.3: DONTNEED, 2.4: DONE
ruby_2_4 r59406 merged revision(s) 58638,58640.
----------------------------------------
Bug #11873: Syntax error and parse problem when calling a method without parentheses
https://bugs.ruby-lang.org/issues/11873#change-65893
* Author: tompng (tomoya ishida)
* Status: Closed
* Priority: Normal
* Assignee:
* Target version:
* ruby -v: ruby 2.3.0p0 (2015-12-25 revision 53290) [x86_64-darwin14]
* Backport: 2.2: DONTNEED, 2.3: DONTNEED, 2.4: DONE
----------------------------------------
In the following case, syntax error rises when calling a method without parentheses.
~~~ruby
a b{c d}, :e do end #=> syntax error(should be syntax ok)
a b(c d), :e do end #=> syntax error(should be syntax ok)
a b{c(d)}, :e do end #=> syntax ok(expected)
a b(c(d)), :e do end #=> syntax ok(expected)
~~~
If you change the literal `:e` to a method name, then the do-block is passed to the wrong method
~~~ruby
p p{p p;p(p)}, tap do puts 'Hello' end
#=> LocalJumpError(expected. do-end is passed to the first p)
p p{p(p);p p}, tap do puts 'Hello' end
#=> shows Hello(why? do-end is passed to tap)
~~~
versions are
~~~
1.8.7-p375
1.9.3-p547
2.1.1p76
2.2.0p0
2.3.0p0
~~~
--
https://bugs.ruby-lang.org/
Unsubscribe: <mailto:ruby-core-request@ruby-lang.org?subject=unsubscribe>
<http://lists.ruby-lang.org/cgi-bin/mailman/options/ruby-core>