We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
NamedTuple
We currently hit a parsing error when encountering a "data class" (introduced in Python 3.7). Here's an example:
https://github.com/kyzhouhzau/NLPGNN/blob/b9ecec2c6df1b3e40a54511366dcb6085cf90c34/nlpgnn/models/TextGCN2019.py#L12-L16
We're getting a front-end parsing error for this. Most likely, it would require a Jython change. To get more info, I filed jython/jython#339.
The text was updated successfully, but these errors were encountered:
Actually, this is an example of a NamedTuple, which has a similar syntax.
Sorry, something went wrong.
Add tests for wala#205.
4633106
Continue module parsing despite Jython parsing errors (#206)
cbd558e
Let's see if we can still go through (similar to [b3c28a8](#125)). ## Differences 1. Log a warning instead of throwing an exception, which stops the module from processing. We are already doing this further up the stack anyway: https://github.com/wala/ML/blob/ef1cca799d7726bfc70cec7b838ebeec2516d5e4/com.ibm.wala.cast.python/source/com/ibm/wala/cast/python/client/PythonAnalysisEngine.java#L159-L166 2. Continue to convert to CAst despite the parsing error coming out of Jython. This is a workaround for #205. I think this should be OK (best-effort) as I don't see it contributing to any soundness issues. And, from what I am seeing in the [logs](https://github.com/ponder-lab/ML/actions/runs/9897547494/job/27342295209#step:12:32780), the parsing errors are "mild."
No branches or pull requests
We currently hit a parsing error when encountering a "data class" (introduced in Python 3.7). Here's an example:
https://github.com/kyzhouhzau/NLPGNN/blob/b9ecec2c6df1b3e40a54511366dcb6085cf90c34/nlpgnn/models/TextGCN2019.py#L12-L16
We're getting a front-end parsing error for this. Most likely, it would require a Jython change. To get more info, I filed jython/jython#339.
The text was updated successfully, but these errors were encountered: