Project

General

Profile

Actions

Bug #12669

closed

syntax error at assinments of command

Added by nobu (Nobuyoshi Nakada) over 7 years ago. Updated over 7 years ago.

Status:
Closed
Assignee:
-
Target version:
-
[ruby-core:76835]

Description

Related to #12402, I found other kind inconsistencies.

simple assignment and op assign of command cause syntax error,
while simple assignments don't.

$ ruby -ce 'a = b = raise "x"'
Syntax OK
$ ruby -ce 'a = b += raise "x"'
-e:1: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '('
a = b += raise "x"
                ^
$ ruby -ce 'a += b = raise "x"'
-e:1: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '('
a += b = raise "x"
                ^
$ ruby -ce 'a += b += raise "x"'
-e:1: syntax error, unexpected tSTRING_BEG, expecting keyword_do or '{' or '('
a += b += raise "x"
                 ^

https://github.com/ruby/ruby/compare/trunk...nobu:chained-rhs

Updated by nobu (Nobuyoshi Nakada) over 7 years ago

  • Description updated (diff)
Actions #2

Updated by nobu (Nobuyoshi Nakada) over 7 years ago

  • Status changed from Open to Closed

Applied in changeset r55888.


parse.y: chained assignments

  • parse.y (command_asgn, arg): fix syntax errors with chained
    assignment with op assign. [Bug #12669]

Updated by whitequark (whitequark *) over 7 years ago

Will this change be backported?

Actions

Also available in: Atom PDF

Like0
Like0Like0Like0