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
I want to retrieve the list of types of Placeholders in a typechecked Statement. This would be significantly easier with a Generic instance for most datatypes.
I'm happy to send a PR with instances, though looking at the ag files has me a little confused: I'd have thought it to be just a question of adding deriving <Type>: <classes>, but it seems as though ScalarExpr has more instances than I can find in the source file.
The text was updated successfully, but these errors were encountered:
The instances are probably from this line which is using the uuagc syntax:
deriving AllNodes: Show,Eq,Typeable,Data
(hssqlppp/src/Database/HsSqlPpp/Internals/AstInternal.ag:1382)
I want to retrieve the list of types of
Placeholder
s in a typecheckedStatement
. This would be significantly easier with aGeneric
instance for most datatypes.I'm happy to send a PR with instances, though looking at the
ag
files has me a little confused: I'd have thought it to be just a question of addingderiving <Type>: <classes>
, but it seems as thoughScalarExpr
has more instances than I can find in the source file.The text was updated successfully, but these errors were encountered: