From: "nobu (Nobuyoshi Nakada) via ruby-core" Date: 2023-12-01T17:39:48+00:00 Subject: [ruby-core:115568] [Ruby master Bug#20033] `/#{''}(?)/ =~ s` looks like a dynamic regexp match but assigns to local variable Issue #20033 has been updated by nobu (Nobuyoshi Nakada). https://github.com/ruby/ruby/pull/9097 ---------------------------------------- Bug #20033: `/#{''}(?)/ =~ s` looks like a dynamic regexp match but assigns to local variable https://bugs.ruby-lang.org/issues/20033#change-105501 * Author: tompng (tomoya ishida) * Status: Open * Priority: Normal * ruby -v: ruby 3.3.0dev (2023-11-30T16:23:25Z master d048bae96b) [x86_64-linux] * Backport: 3.0: UNKNOWN, 3.1: UNKNOWN, 3.2: UNKNOWN ---------------------------------------- I expect all of these code not to assign to lvar because all regexp looks like embedded dynamic regexp. ~~~ruby /#{''}(?)/ =~ '' # assings to lvar /#{"#{''}"}(?)/ =~ '' # does not assign to lvar /#{<)/ =~ '' # assigns to lvar string A /#{<)/ =~ '' # does not assign to lvar #{'string'} A ~~~ I think `/#{'a'}/` can be a DREGX because for string, `"#{'a'}#{'b'}"` is DSTR `(DSTR@1:0-1:14 "ab" nil nil)`. -- 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/