mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-13 07:16:18 +00:00

... and refactor header parser to fully use combinators, in support of future combinator-based superpowers
27 lines
668 B
Text
27 lines
668 B
Text
Module {
|
|
comments: [],
|
|
header: Interface(
|
|
InterfaceHeader {
|
|
before_name: [],
|
|
name: @10-13 ModuleName(
|
|
"Foo",
|
|
),
|
|
exposes: KeywordItem {
|
|
keyword: Spaces {
|
|
before: [],
|
|
item: ExposesKeyword,
|
|
after: [],
|
|
},
|
|
item: [],
|
|
},
|
|
imports: KeywordItem {
|
|
keyword: Spaces {
|
|
before: [],
|
|
item: ImportsKeyword,
|
|
after: [],
|
|
},
|
|
item: [],
|
|
},
|
|
},
|
|
),
|
|
}
|