-
Notifications
You must be signed in to change notification settings - Fork 213
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
Parser: address boundary error #2408
Comments
I tried some debugging. Here is something that may be helpful. Lines 411 to 417 in b60c8e9
yylloc.file is empty after yyinfo.pop();
A possible patch: souffle/src/parser/SrcLocation.cpp Lines 142 to 144 in b60c8e9
if (yylloc.file) Frames.push(yylloc);
yylloc.file = NewFile;
yylloc.start = yylloc.end = {1, 1}; |
The root cause is that we pop the last valid context frame before creating the last token, hence |
I currently use the latest release (2.4), which is installed on windows wsl2 (ubuntu) following the installation guide.
Address boundary error occurs if input is a file with following content:
Example:
The text was updated successfully, but these errors were encountered: