mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-25 09:39:52 +08:00
Make ParsedSource members public again
This commit is contained in:
parent
29891cf771
commit
4c46faea99
|
@ -101,9 +101,9 @@ impl From<TokenizerError> for ParseErrorCode {
|
||||||
|
|
||||||
/// A type wrapping up a parse tree and the original source behind it.
|
/// A type wrapping up a parse tree and the original source behind it.
|
||||||
pub struct ParsedSource {
|
pub struct ParsedSource {
|
||||||
src: WString,
|
pub src: WString,
|
||||||
src_ffi: UniquePtr<CxxWString>,
|
src_ffi: UniquePtr<CxxWString>,
|
||||||
ast: Ast,
|
pub ast: Ast,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl ParsedSource {
|
impl ParsedSource {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user