From d817ecb51d361ad84a079ef903f192d60669c570 Mon Sep 17 00:00:00 2001 From: rvcas Date: Mon, 28 Jun 2021 11:54:19 -0400 Subject: [PATCH] feat(markup): add explicit case for RuntimeError --- editor/src/editor/markup/nodes.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/editor/src/editor/markup/nodes.rs b/editor/src/editor/markup/nodes.rs index 2d09f21ed6..e40a38c714 100644 --- a/editor/src/editor/markup/nodes.rs +++ b/editor/src/editor/markup/nodes.rs @@ -347,6 +347,9 @@ pub fn expr2_to_markup<'a, 'b>( syn_high_style: HighlightStyle::Blank, parent_id_opt: None, }), + Expr2::RuntimeError() => { + todo!("Handle Expr2::RuntimeError") + } rest => todo!("implement expr2_to_markup for {:?}", rest), } }