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
Currently, libSyntax parsing doesn't specialize class declarations, meaning all class declarations are manifested as UnkownDecl. Since libSyntax clients will very likely interested in specialized analysis on classes. We need to teach the parser to specialize them.
See that function decl is specialized however class decl is not. The desirable feature will be having class specialized as well. One can follow the patch we specialized struct declaration from: c4604d7
The text was updated successfully, but these errors were encountered:
Additional Detail from JIRA
md5: 3d9c5dcc06c021c023b1dbb17038a3b7
Issue Description:
Currently, libSyntax parsing doesn't specialize class declarations, meaning all class declarations are manifested as UnkownDecl. Since libSyntax clients will very likely interested in specialized analysis on classes. We need to teach the parser to specialize them.
To demo what we have now:
See that function decl is specialized however class decl is not. The desirable feature will be having class specialized as well. One can follow the patch we specialized struct declaration from: c4604d7
The text was updated successfully, but these errors were encountered: