mirror of
https://github.com/roc-lang/roc.git
synced 2025-08-19 03:20:14 +00:00
Parse and format inline import with exposed names
This commit is contained in:
parent
76d799ea13
commit
5cd084b73c
15 changed files with 248 additions and 23 deletions
|
@ -522,6 +522,10 @@ pub enum EExpect<'a> {
|
|||
#[derive(Debug, Clone, PartialEq, Eq)]
|
||||
pub enum EImport {
|
||||
Import(Position),
|
||||
ExposedListStart(Position),
|
||||
ExposedName(Position),
|
||||
ExposedListEnd(Position),
|
||||
From(Position),
|
||||
ModuleName(Position),
|
||||
As(Position),
|
||||
Alias(Position),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue