Skip to content

Commit beac322

Browse files
committed
fix: visibility
1 parent 1908849 commit beac322

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

crates/postgresql-cst-parser/src/cst/lr_parse_state.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ use crate::{lexer::Token, syntax_kind::SyntaxKind};
33
use super::{Extra, Node};
44

55
#[allow(dead_code)]
6-
pub(crate) struct LRParseState<'a> {
6+
pub struct LRParseState<'a> {
77
pub(crate) state: u32,
88
pub(crate) stack: &'a [(u32, Node)],
99
pub(crate) action_table: &'a [i16],
@@ -26,7 +26,7 @@ impl<'a> LRParseState<'a> {
2626
}
2727
}
2828

29-
pub fn previous_extra(&self) -> Option<&Extra> {
29+
pub(crate) fn previous_extra(&self) -> Option<&Extra> {
3030
let Some(last_extra) = self.extras.last() else {
3131
return None;
3232
};

0 commit comments

Comments
 (0)