From 939421e96fb87c14bb9bc96a1dd107c9f7a6c63e Mon Sep 17 00:00:00 2001 From: Wilfred Hughes Date: Mon, 4 Apr 2022 22:03:20 -0700 Subject: [PATCH] This field does not need to be public --- src/syntax.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/syntax.rs b/src/syntax.rs index 84eae013f..1bd1076c0 100644 --- a/src/syntax.rs +++ b/src/syntax.rs @@ -54,7 +54,7 @@ pub struct SyntaxInfo<'a> { next_sibling: Cell>>, /// The syntax node that occurs before this one, in a depth-first /// tree traversal. - pub prev: Cell>>, + prev: Cell>>, /// The parent syntax node, if present. parent: Cell>>, /// Does the previous syntax node occur on the same line as the