You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Error compiling: Main.vyvyper.exceptions.UndeclaredDefinition: Storage variable 'vyper_is_cool_af' has not been declared. contract "Main.vy:10", function "blocknumber", line 10:11 9 def blocknumber() -> uint256: ---> 10 return self.vyper_is_cool_af() -------------------^ 11
The issue here is that I mistakenly chose the self keyword instead of Lib. It would be cool if the compiler not only would make suggestions based on the self namespace but also for the imported Lib. Something like:
Error compiling: Main.vyvyper.exceptions.UndeclaredDefinition: Storage variable 'vyper_is_cool_af' has not been declared. Did you mean 'Lib.vyper_is_cool_af'? contract "Main.vy:10", function "blocknumber", line 10:11 9 def blocknumber() -> uint256: ---> 10 return self.vyper_is_cool_af() -------------------^ 11
The text was updated successfully, but these errors were encountered:
charles-cooper
changed the title
Improve Debugging Info for Modules
improve error messages wrt module namespacing
Dec 15, 2023
Let's assume you compile modules based on #3663. Furthermore, let's assume we have the following setup:
This will throw with:
The issue here is that I mistakenly chose the
self
keyword instead ofLib
. It would be cool if the compiler not only would make suggestions based on theself
namespace but also for the imported Lib. Something like:The text was updated successfully, but these errors were encountered: