Parse platform headers

This commit is contained in:
Richard Feldman 2020-10-17 16:28:36 -04:00
parent a31ed6943f
commit dfa61b4c18
7 changed files with 240 additions and 23 deletions

View file

@ -1012,6 +1012,13 @@ fn parse_header<'a>(
ident_ids_by_module,
module_timing,
)),
Ok((ast::Module::Platform { header }, parse_state)) => {
todo!(
"TODO implement docs for platform with {:?} and {:?}",
header,
parse_state
);
}
Err((fail, _)) => Err(LoadingProblem::ParsingFailed { filename, fail }),
}
}