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 line in my testbench causes errors: wait for 10ns;
wait for 10ns;
The errors are as follows:
Invalid integer character 'n' vhdl ls(systax_error) No declaration of 's' vhdl ls(unresolved)
The text was updated successfully, but these errors were encountered:
See #141.
VHDL-LS only allows for time units separated by a space, which seems to match the VHDL-2008 standard. Some tools allow the space to be omitted.
wait for 10 ns; will not cause the error shown.
wait for 10 ns;
Sorry, something went wrong.
You're right - I missed that issue. Feature request for a more descriptive error message?
No branches or pull requests
The following line in my testbench causes errors:
wait for 10ns;
The errors are as follows:
The text was updated successfully, but these errors were encountered: