Skip to content
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 fails to recognized single character symbol names #2

Open
udif opened this issue Feb 22, 2019 · 0 comments
Open

Parser fails to recognized single character symbol names #2

udif opened this issue Feb 22, 2019 · 0 comments

Comments

@udif
Copy link
Contributor

udif commented Feb 22, 2019

Parser failed with the following VCD line:
$var wire 1 - D [3] $end

Reason was that VCDScanner.l contained the following:
SCOPE_IDENTIFIER [a-zA-Z_][a-zA-Z_0-9\(\)]+
Changing this to:
SCOPE_IDENTIFIER [a-zA-Z_][a-zA-Z_0-9\(\)]*
Fixed the issue.

ben-marshall added a commit that referenced this issue Apr 8, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant