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
The following code fails to parse with VHDLParser block-stream context.vhd
VHDLParser block-stream context.vhd
library test_lib; context test_lib.test_context;
With the output
================================================================================ pyVHDLParser - Test Application ================================================================================ [StartOfDocumentBlock] [Library.StartBlock 'library ' at (line: 1, col: 1) .. (line: 1, col: 8)] [Library.LibraryNameBlock 'test_lib' at (line: 1, col: 9) .. (line: 1, col: 17)] [Library.EndBlock ';' at (line: 1, col: 17) .. (line: 1, col: 17)] [LinebreakBlock at (line: 1, col: 18) .. (line: 1, col: 18)] ERROR: Expected whitespace after context name (identifier).
From the context.py code it looks like only context declaration is implemented.
context declaration
The text was updated successfully, but these errors were encountered:
Oh, you're right a missed a complete statement kind.
Sorry, something went wrong.
No branches or pull requests
The following code fails to parse with
VHDLParser block-stream context.vhd
With the output
From the context.py code it looks like only
context declaration
is implemented.The text was updated successfully, but these errors were encountered: