mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-13 15:26:24 +00:00

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