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
Is your feature request related to a problem? Please describe.
I'd like to implement a custom LeafCache
Describe the solution you'd like
Have read access to LeafAST fields that need to be cached
Describe alternatives you've considered
Have LeafAST conform to Codable and have the field name public.
I suppose the effort to have LeafAST conforms Codable to not be too much problematic thanks to the introduction of the Codable enums in swift 5.5
Additional context LeafCache is not implementable because LeafAST doesn't even have the field name public which is how LeafCache requires to store the leafAST.
It won't be enough to have it public because we don't have access to the others fields.
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
I'd like to implement a custom
LeafCache
Describe the solution you'd like
Have read access to
LeafAST
fields that need to be cachedDescribe alternatives you've considered
Have
LeafAST
conform toCodable
and have the fieldname
public.I suppose the effort to have
LeafAST
conformsCodable
to not be too much problematic thanks to the introduction of theCodable
enums in swift 5.5Additional context
LeafCache
is not implementable becauseLeafAST
doesn't even have the fieldname
public which is how LeafCache requires to store theleafAST
.It won't be enough to have it public because we don't have access to the others fields.
The text was updated successfully, but these errors were encountered: