Untyped AST produced by the parser, if parsing succeeded.
(&self)
| 173 | pub fn program(&self) -> Option<&Program> { |
| 174 | self.program.as_deref() |
| 175 | } |
| 176 | |
| 177 | /// Rope representation covering the latest snapshot of the document. |
| 178 | #[allow(dead_code)] |
| 179 | pub fn rope(&self) -> &Rope { |
| 180 | &self.rope |