-
Notifications
You must be signed in to change notification settings - Fork 2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[CS2] Lexer: Destructuring with nested default values #4566
Comments
GeoffreyBooth
changed the title
broken destructuring w/ nested defaults on 2
[CS2] Lexer: Destructuring with nested default values
Jun 11, 2017
@helixbass you feel like taking a crack at fixing it? Maybe after #4493 is finished? |
@GeoffreyBooth sure |
helixbass
added a commit
to helixbass/copheescript
that referenced
this issue
Jun 14, 2017
@GeoffreyBooth @helixbass this is fixed in my last commit. |
GeoffreyBooth
pushed a commit
that referenced
this issue
Jun 21, 2017
@zdenko just noticed your comment. Sorry, I already merged the other PR in. I guess merge |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@GeoffreyBooth I just ran into something that broke (I assume unintentionally) as a result of #4478: eg
({a: {b = 1}}) ->
compiled ok before this PR but giveserror: unexpected =
after. This destructuring also breaks in a destructured assignment:{a: {b = 1}} = c
also giveserror: unexpected =
The text was updated successfully, but these errors were encountered: