-
Notifications
You must be signed in to change notification settings - Fork 124
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Parsing C# doesn't work #728
Comments
SELECT UAST(f.blob_content, 'csharp') AS uast
FROM refs AS r
NATURAL JOIN commit_files
NATURAL JOIN files AS f
WHERE r.ref_name = 'HEAD' AND f.file_path REGEXP('.*.cs')
LIMIT 5 This does, so it's not a gitbase issue. It's just that bblfsh does accepts |
bblfsh does accept so it's a problem in gitbase. though maybe it's better to wait for aliases in supported languages from LA team to fix it. |
If gitbase asks if a language is supported and bblfsh reports that it's not, it's not a problem in gitbase. It's a problem of bblfsh not correctly reporting whether a language is supported or not. We can create a mapping between languages such as C# to translate it to csharp so bblfsh will say that it's supported, but at the end of the day it's a hack until LA adds aliases in supported languages. |
Leaving this blocked until enry/bblfsh have this fixed. |
Language aliases were released, see https://github.com/src-d/backlog/issues/1421#issuecomment-496659214 for more details. |
This is fixed in bblfsh side, but we cannot upgrade to go modules right now so this will be kept as blocked. |
Why do you need modules for this? |
Because |
@erizocosmico According to "minimal modules compatibility" you can try getting the package without the |
@dennwc we can, but we're importing bblfsh go-client, which has dependencies on modules using the |
But we definitely won't backport this change. Do you need any help with switching to modules in Gitbase? |
No, don't worry. Is more of a workflow and (internal gitbase) tooling issue than modules issues. We'll eventually move to go modules when we figure those out. |
Aliases support becomes a high priority now, so maybe it is the time to move on with this task. |
Will be fixed once #847 is merged |
Finally fixed on v0.21.0-beta3 |
Run this query on any C# repository:
it will return empty uasts.
The text was updated successfully, but these errors were encountered: