make syntaxtree.text public

This commit is contained in:
light-ly 2024-09-15 17:07:55 +08:00
parent f5b3f2b090
commit af11f5ff1e

View File

@ -15,7 +15,7 @@ pub use sv_parser_syntaxtree::*;
pub struct SyntaxTree { pub struct SyntaxTree {
node: AnyNode, node: AnyNode,
text: PreprocessedText, pub text: PreprocessedText,
} }
impl SyntaxTree { impl SyntaxTree {