[ruby-core:77035] [Ruby trunk Feature#12700] regexg heredoc support
From:
gam3-ruby@...3.net
Date:
2016-08-24 09:15:11 UTC
List:
ruby-core #77035
Issue #12700 has been reported by Allen Morris.
----------------------------------------
Feature #12700: regexg heredoc support
https://bugs.ruby-lang.org/issues/12700
* Author: Allen Morris
* Status: Open
* Priority: Normal
* Assignee:
----------------------------------------
There is support for ', ", and ` heredocs, but there is no support for /.
Example code with new feature:
~~~ ruby
first = 'first'
orig = /#{first}
match\s # match
this # match this
/x
right = <</REGEXP/x
#{first}
match\s # match
this # match this
REGEXP
raise unless orig == right
~~~
There is no straight forward way to replace a regexp heredoc as a double quote heredoc requires that '\\s' be escaped.
As shown in the code below you can't use the string heredoc to directly replace a regexp heredoc because of this need for extra escaping.
~~~ ruby
first = 'first'
orig = /#{first}
match\s # match
this # match this
/x
wrong = Regexp.new(<<REGEXP, Regexp::EXTENDED)
#{first}
match\s # match
this # match this
REGEXP
right = Regexp.new(<<REGEXP, Regexp::EXTENDED)
#{first}
match\\s # match
this # match this
REGEXP
raise unless orig != wrong
raise unless orig == right
~~~
---Files--------------------------------
regex_heredoc_patch (2.99 KB)
--
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>