usetree_sitter::Tree;/// The original parse tree and program source code provided by the user
#[derive(Clone, Debug)]pubstructOriginal{pubtree: Tree,
pubtext:Vec<u8>,
}implOriginal{#[must_use]pubfnnew(tree: Tree, text:Vec<u8>)-> Original{
Original { tree, text }}}