Parse doc comments

This commit is contained in:
Richard Feldman 2020-05-23 21:42:30 -04:00
parent 4d8cbc4811
commit 3dac73d8d0
5 changed files with 138 additions and 67 deletions

View file

@ -294,6 +294,7 @@ pub enum AssignedField<'a, Val> {
pub enum CommentOrNewline<'a> {
Newline,
LineComment(&'a str),
DocComment(&'a str),
}
#[derive(Clone, Debug, PartialEq)]