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
Right now, Chunk is interpreted as IDENT, even though we could conceivably generate the appropriate code for it in-situ. However, generating the appropriate methods for Chunk is simpler than transitively applying its type information across every location in which it is used.
TL;DR generate code for all valid *ast.TypeDecl nodes.
The text was updated successfully, but these errors were encountered:
Things get rather difficult if we don't want to generate code for arbitrary types, but still want to support something like:
Right now,
Chunk
is interpreted asIDENT
, even though we could conceivably generate the appropriate code for it in-situ. However, generating the appropriate methods forChunk
is simpler than transitively applying its type information across every location in which it is used.TL;DR generate code for all valid
*ast.TypeDecl
nodes.The text was updated successfully, but these errors were encountered: