Skip to content
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

Update syntax on matched branches #3

Open
machaval opened this issue Sep 4, 2019 · 1 comment
Open

Update syntax on matched branches #3

machaval opened this issue Sep 4, 2019 · 1 comment
Labels
update Label for the update proposal

Comments

@machaval
Copy link
Contributor

machaval commented Sep 4, 2019

What should happen when there are sub branches on the update.

{foo: 123} update {
    case .foo -> {bar: true}
    case .foo.bar -> {sub: 123}
} 

In my opinion this case should return {foo: {bar:true}} and not {foo:{bar: {sub: 123}}} and hint a warning saying that case .foo.bar -> {sub: 123} this branch is never going to be executed.

I think the bottom problem is how we define the semantics of update.

a. It would go through the expression ({foo: 123}) tree and see what branch matches and updates that node with what ever the matcher returns. This is more like a tree pattern matcher mental model

b. Think of update as a sequential update expressions where they will be executed one after the other. Like a chain {foo: 123} update .foo with {bar: true} update .foo.bar with {sub: 123}

The way it was in my mind is more like a

@machaval machaval added the update Label for the update proposal label Sep 4, 2019
@jerneyio
Copy link
Contributor

jerneyio commented Sep 4, 2019

That works for me. Need to also consider what might happen if the user tries to update the same node twice:

{foo: 123} update {
    case at .foo -> {bar: true}
    case at .foo -> {bar: false}
} 

In this case you can ignore the second .foo branch, returning {foo: {bar: true}}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
update Label for the update proposal
Projects
None yet
Development

No branches or pull requests

2 participants