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
I believe the issue is because of the assumption that tree-sitter parser repository for a specific language will use the same suffix as the wrapper method for the language which breaks for c-sharp as the parser repo has a suffix '-c-sharp' while the wrapper methods have a suffix '-cs'.
The text was updated successfully, but these errors were encountered:
The problem is not necessarily the suffix but the fact that the dash is not supported in the C header
(tree-sitter tries to load the function tree_sitter_c-sharp but it is tree_sitter_c_sharp).
I implemented and pushed a quick workaround and parsing C# files should now work (if you build from source).
I believe the issue is because of the assumption that
tree-sitter
parser repository for a specific language will use the same suffix as the wrapper method for the language which breaks for c-sharp as the parser repo has a suffix '-c-sharp' while the wrapper methods have a suffix '-cs'.The text was updated successfully, but these errors were encountered: