Uses of Class
ch.usi.si.seart.treesitter.Tree
-
Packages that use Tree Package Description ch.usi.si.seart.treesitter Provides all the core classes for interfacing with the tree-sitter API.ch.usi.si.seart.treesitter.printer Provides parse tree serialization utilities. -
-
Uses of Tree in ch.usi.si.seart.treesitter
Methods in ch.usi.si.seart.treesitter that return Tree Modifier and Type Method Description TreeTree. clone()Clone this tree, creating a separate, independent instance.TreeParser. parse(@NotNull String source)Use the parser to parse some source code and create a syntaxTree.TreeParser. parse(@NotNull String source, @NotNull Tree oldTree)Use the parser to incrementally reparse a changed source code string, re-using unchanged parts of theTreeto expedite the process.TreeParser. parse(@NotNull Path path)Use the parser to parse source code from a file.TreeParser. parse(@NotNull Path path, @NotNull Tree oldTree)Use the parser to reparse source code from a file, re-using unchanged parts of theTreeto expedite the process.Methods in ch.usi.si.seart.treesitter with parameters of type Tree Modifier and Type Method Description TreeParser. parse(@NotNull String source, @NotNull Tree oldTree)Use the parser to incrementally reparse a changed source code string, re-using unchanged parts of theTreeto expedite the process.TreeParser. parse(@NotNull Path path, @NotNull Tree oldTree)Use the parser to reparse source code from a file, re-using unchanged parts of theTreeto expedite the process. -
Uses of Tree in ch.usi.si.seart.treesitter.printer
Constructors in ch.usi.si.seart.treesitter.printer with parameters of type Tree Constructor Description DotGraphPrinter(@NotNull Tree tree)
-