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
{{ message }}
This repository has been archived by the owner on Jan 28, 2021. It is now read-only.
To reduce the amount of implemented code on Expressions and Nodes, we can heavily use UnaryExpression, BinaryExpression, and so on.
Right now, these interfaces are just implementing
Children()
,Resolved()
andIsNullable()
.We could implement also
TransformUp
function as following:TransformUp
method can be implemented on BinaryExpression.Generate
method is the one that will be implemented on the other Expressions:Doing this, we will reduce bugs on bad implemented TransformUp functions, also we can create generic Tests suites for this kind of expressions.
The text was updated successfully, but these errors were encountered: