Remove unused export in Ast

This commit is contained in:
Johannes Altmanninger
2025-02-28 03:58:51 +01:00
parent fa390f1b14
commit 84eb06ac14

View File

@@ -2514,7 +2514,7 @@ pub struct Ast {
// Its type depends on what was requested to parse.
top: Box<dyn NodeMut>,
/// Whether any errors were encountered during parsing.
pub any_error: bool,
any_error: bool,
/// Extra fields.
pub extras: Extras,
}