From 84eb06ac14ef172d5264a7ee29472c302a1a6b1f Mon Sep 17 00:00:00 2001 From: Johannes Altmanninger Date: Fri, 28 Feb 2025 03:58:51 +0100 Subject: [PATCH] Remove unused export in Ast --- src/ast.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ast.rs b/src/ast.rs index 93c8bba0e..93e5e61b7 100644 --- a/src/ast.rs +++ b/src/ast.rs @@ -2514,7 +2514,7 @@ pub struct Ast { // Its type depends on what was requested to parse. top: Box, /// Whether any errors were encountered during parsing. - pub any_error: bool, + any_error: bool, /// Extra fields. pub extras: Extras, }