foundry-rs / compilers

Utilities for working with native solc and compiling projects.
Apache License 2.0
58 stars 34 forks source link

feat: Vyper imports parser #125

Closed klkvr closed 1 month ago

klkvr commented 1 month ago

We need to parse Vyper import directives for caching to work correctly.

This PR implements parser which is able to process imports of format import a.b.c and from a.b.c import d. Relative imports (from ...a.b.c import d) are also supported.

Tested on snekmate codebase.