[ruby-core:85496] [CommonRuby Feature#14463] Allow comments to precede dots in member expressions

From: me@...
Date: 2018-02-11 02:48:56 UTC
List: ruby-core #85496
Issue #14463 has been reported by isiahmeadows (Isiah Meadows).

----------------------------------------
Feature #14463: Allow comments to precede dots in member expressions
https://bugs.ruby-lang.org/issues/14463

* Author: isiahmeadows (Isiah Meadows)
* Status: Open
* Priority: Normal
* Assignee: 
* Target version: 
----------------------------------------
I, coming from other languages, find it *extremely* odd that the first three are considered valid, but the fourth is a syntax error (tested in Ruby 2.3.4 + 2.5.0, Rubocop's parser for 2.3):

~~~ ruby
# 1
foo = -> {}
foo.
  call

# 2
foo = -> {}
foo.
  # comment
  call

# 3
foo = -> {}
foo
  .call

# 4
foo = -> {}
foo
  # comment
  .call
~~~

Any chance 4 could be fixed? (It looks more like a parser/spec bug than anything.)



-- 
https://bugs.ruby-lang.org/

Unsubscribe: <mailto:[email protected]?subject=unsubscribe>
<http://lists.ruby-lang.org/cgi-bin/mailman/options/ruby-core>

In This Thread

Prev Next