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
You could implement it yourself and do a PR. This means adapting the parser class, creating an AssignmentExpression class and adding an evalAssignment method in the ExpressionEvaluator.
Alternatively, you could use a set method instead of the = operator. So, if you would have an expression like x["something"] = 'hello', write it as x.set("something", 'hello') instead. This will be parsed by the default parser. You would only need to create a custom evaluator that extends the default ExpressionEvaluator and overrides the evalMemberExpression. Something like this:
i need help please
how implement set "=" in Map context
The text was updated successfully, but these errors were encountered: