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

improve error messages wrt module namespacing #3692

Open
pcaversaccio opened this issue Dec 15, 2023 · 0 comments
Open

improve error messages wrt module namespacing #3692

pcaversaccio opened this issue Dec 15, 2023 · 0 comments

Comments

@pcaversaccio
Copy link
Collaborator

pcaversaccio commented Dec 15, 2023

Let's assume you compile modules based on #3663. Furthermore, let's assume we have the following setup:

# Lib.vy

@internal
@pure
def vyper_is_cool_af() -> uint256:
    return 1337

# Main.vy

import Lib

var: uint256

@external
@view
def blocknumber() -> uint256:
    return self.vyper_is_cool_af()

This will throw with:

Error compiling: Main.vy
vyper.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.vy
vyper.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
@charles-cooper charles-cooper changed the title Improve Debugging Info for Modules improve error messages wrt module namespacing Dec 15, 2023
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