From e69b798857fd853048b77fcfd18c5df780f70ecf Mon Sep 17 00:00:00 2001 From: rvcas Date: Mon, 21 Jun 2021 00:22:32 -0400 Subject: [PATCH] chore: pending def should be pub --- editor/src/lang/def.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/editor/src/lang/def.rs b/editor/src/lang/def.rs index c56115eb03..8d60444847 100644 --- a/editor/src/lang/def.rs +++ b/editor/src/lang/def.rs @@ -79,7 +79,7 @@ impl ShallowClone for Def { /// but no Expr canonicalization has happened yet. Also, it has had spaces /// and nesting resolved, and knows whether annotations are standalone or not. #[derive(Debug)] -enum PendingDef<'a> { +pub enum PendingDef<'a> { /// A standalone annotation with no body AnnotationOnly( &'a Located>,