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 Sep 2, 2022. It is now read-only.
For the AST, I'd like two new interfaces and three new structs.
type (
ColumnReferenceExpressioninterface { ... }
LiteralExpressioninterface { ... }
ConstantLiteralstruct {} // implements LiteralExpressionConstantLiteralOrColumnReferencestruct {} // implements both LiteralExpression and ColumnReferenceExpressionColumnReferencestruct {} // implements ColumnReferenceExpression
)
I expect that this facilitates handling in the engine a lot.
Whoever implements this; feel free to change the names suggested above. However, the names should be somewhat consistent with what we already have.
The text was updated successfully, but these errors were encountered:
See #55
For the AST, I'd like two new interfaces and three new structs.
I expect that this facilitates handling in the engine a lot.
Whoever implements this; feel free to change the names suggested above. However, the names should be somewhat consistent with what we already have.
The text was updated successfully, but these errors were encountered: