From 54825538e4c3112b92e68944ed33e828cceceefd Mon Sep 17 00:00:00 2001 From: Tom Alexander Date: Sat, 2 Sep 2023 18:21:43 -0400 Subject: [PATCH] fixup --- src/parser/parser_context.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/parser/parser_context.rs b/src/parser/parser_context.rs index 670e99d..35e3c57 100644 --- a/src/parser/parser_context.rs +++ b/src/parser/parser_context.rs @@ -125,6 +125,7 @@ impl<'r> std::fmt::Debug for ExitMatcherNode<'r> { } } +#[derive(Debug)] pub struct GlobalSettings<'s> { placeholder: Option<&'s str>, } @@ -135,6 +136,7 @@ impl<'s> GlobalSettings<'s> { } } +#[derive(Debug)] pub struct Context<'r, 's> { global_settings: &'s GlobalSettings<'s>, tree: List<'r, ContextElement<'r, 's>>,