feat(markup): add explicit case for RuntimeError

This commit is contained in:
rvcas 2021-06-28 11:54:19 -04:00
parent 6b882b85de
commit d817ecb51d

View file

@ -347,6 +347,9 @@ pub fn expr2_to_markup<'a, 'b>(
syn_high_style: HighlightStyle::Blank, syn_high_style: HighlightStyle::Blank,
parent_id_opt: None, parent_id_opt: None,
}), }),
Expr2::RuntimeError() => {
todo!("Handle Expr2::RuntimeError")
}
rest => todo!("implement expr2_to_markup for {:?}", rest), rest => todo!("implement expr2_to_markup for {:?}", rest),
} }
} }