This field does not need to be public

pull/241/head
Wilfred Hughes 2022-04-04 22:03:20 +07:00
parent 163474cf41
commit 939421e96f
1 changed files with 1 additions and 1 deletions

@ -54,7 +54,7 @@ pub struct SyntaxInfo<'a> {
next_sibling: Cell<Option<&'a Syntax<'a>>>, next_sibling: Cell<Option<&'a Syntax<'a>>>,
/// The syntax node that occurs before this one, in a depth-first /// The syntax node that occurs before this one, in a depth-first
/// tree traversal. /// tree traversal.
pub prev: Cell<Option<&'a Syntax<'a>>>, prev: Cell<Option<&'a Syntax<'a>>>,
/// The parent syntax node, if present. /// The parent syntax node, if present.
parent: Cell<Option<&'a Syntax<'a>>>, parent: Cell<Option<&'a Syntax<'a>>>,
/// Does the previous syntax node occur on the same line as the /// Does the previous syntax node occur on the same line as the