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
48 lines
1.3 KiB
Text
48 lines
1.3 KiB
Text
Module {
|
|
comments: [],
|
|
header: App(
|
|
AppHeader {
|
|
before_name: [],
|
|
name: @4-14 PlainLine(
|
|
"test-app",
|
|
),
|
|
packages: Some(
|
|
KeywordItem {
|
|
keyword: Spaces {
|
|
before: [],
|
|
item: PackagesKeyword,
|
|
after: [],
|
|
},
|
|
item: [],
|
|
},
|
|
),
|
|
imports: Some(
|
|
KeywordItem {
|
|
keyword: Spaces {
|
|
before: [],
|
|
item: ImportsKeyword,
|
|
after: [],
|
|
},
|
|
item: [],
|
|
},
|
|
),
|
|
provides: ProvidesTo {
|
|
provides_keyword: Spaces {
|
|
before: [],
|
|
item: ProvidesKeyword,
|
|
after: [],
|
|
},
|
|
entries: [],
|
|
types: None,
|
|
to_keyword: Spaces {
|
|
before: [],
|
|
item: ToKeyword,
|
|
after: [],
|
|
},
|
|
to: @53-57 ExistingPackage(
|
|
"blah",
|
|
),
|
|
},
|
|
},
|
|
),
|
|
}
|