You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
The text was updated successfully, but these errors were encountered:
What should happen when there are sub branches on the update.
In my opinion this case should return
{foo: {bar:true}}
and not{foo:{bar: {sub: 123}}}
and hint a warning saying thatcase .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 modelb. 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
The text was updated successfully, but these errors were encountered: