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
This should be pretty easy to implement. We'll end up with a symbolgraph json for each, passing a List<Json> to parseAst, and we basically just merge all their symbols and relations into one big ParsedSymbolgraph, before passing it to parseDeclarations as normal.
Also parse Foundation by default, in addition to the user's requested modules. Without these changes, most modules will fail to parse because they depend on stuff from Foundation.
The text was updated successfully, but these errors were encountered:
When we're parsing Foundation by default, we need to make sure that we don't generate bindings for the Foundation APIs, unless they're needed as a transitive dep. The transitive deps check is related to filtering, so I'll wait for that to land before implementing this.
This should be pretty easy to implement. We'll end up with a symbolgraph json for each, passing a
List<Json>
toparseAst
, and we basically just merge all their symbols and relations into one bigParsedSymbolgraph
, before passing it toparseDeclarations
as normal.Also parse Foundation by default, in addition to the user's requested modules. Without these changes, most modules will fail to parse because they depend on stuff from Foundation.
The text was updated successfully, but these errors were encountered: