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
to avoid name conflict between packages
The text was updated successfully, but these errors were encountered:
:: can be used for project namespace resolver like package.
::
[dependencies] prj1 = { git = "" }
module ModuleA { inst a: prj1::ModuleB; }
In SystemVerilog, :: is replaced with _.
_
module ModuleA; prj1_ModuleB a(); endmodule
Sorry, something went wrong.
Project name should be added too.
[project] name = "sample" [dependencies] prj1 = { git = "" }
module sample_ModuleA; prj1_ModuleB a(); endmodule
Add dependency support and project namespace #35 #36
a8e6b65
Allow inst declaration type to scoped_identifier #35
4e66303
Add scoped_identifier resolver #35
fa64d74
No branches or pull requests
to avoid name conflict between packages
The text was updated successfully, but these errors were encountered: