mirror of
https://github.com/roc-lang/roc.git
synced 2025-08-03 11:52:19 +00:00
move suffixed parsing into chomp_identifier_chain
This commit is contained in:
parent
d988eadbb1
commit
370ac1e6b8
4 changed files with 43 additions and 17 deletions
|
@ -999,7 +999,13 @@ fn markdown_to_html(
|
|||
arena.reset();
|
||||
|
||||
match parse_ident(&arena, state, 0) {
|
||||
Ok((_, Ident::Access { module_name, parts }, _)) => {
|
||||
Ok((
|
||||
_,
|
||||
Ident::Access {
|
||||
module_name, parts, ..
|
||||
},
|
||||
_,
|
||||
)) => {
|
||||
let mut iter = parts.iter();
|
||||
|
||||
match iter.next() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue