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 Nov 22, 2018. It is now read-only.
A common use case is to wrap Execute in a function that performs error management and other housekeeping tasks. However, this is prevented because the return value of Compile is not exported. I think it would be desirable to change
type list struct {
l []stmt
}
to
type List struct {
l []stmt
}
This keeps the statement list private but allows the caller to pass the list to other functions.
-- Kurt Jung
The text was updated successfully, but these errors were encountered:
A common use case is to wrap
Execute
in a function that performs error management and other housekeeping tasks. However, this is prevented because the return value ofCompile
is not exported. I think it would be desirable to changeto
This keeps the statement list private but allows the caller to pass the list to other functions.
-- Kurt Jung
The text was updated successfully, but these errors were encountered: