Make ParsedSource members public again

This commit is contained in:
Johannes Altmanninger 2023-04-21 23:57:16 +02:00
parent 29891cf771
commit 4c46faea99

View File

@ -101,9 +101,9 @@ impl From<TokenizerError> for ParseErrorCode {
/// A type wrapping up a parse tree and the original source behind it.
pub struct ParsedSource {
src: WString,
pub src: WString,
src_ffi: UniquePtr<CxxWString>,
ast: Ast,
pub ast: Ast,
}
impl ParsedSource {