Uses of Class
ch.usi.si.seart.treesitter.Tree
-
Packages that use Tree Package Description ch.usi.si.seart.treesitter ch.usi.si.seart.treesitter.printer -
-
Uses of Tree in ch.usi.si.seart.treesitter
Methods in ch.usi.si.seart.treesitter that return Tree Modifier and Type Method Description TreeParser. parse(@NotNull String source)Use the parser to parse some source code and create a syntax tree.TreeParser. parse(@NotNull String source, @NotNull Tree oldTree)Use the parser to incrementally parse a changed source code string, reusing unchanged parts of the tree to speed up the process.TreeParser. parse(@NotNull Path path)Use the parser to parse some source code found in a file at the specified path.TreeParser. parse(@NotNull Path path, @NotNull Tree oldTree)Use the parser to parse some source code found in a file at the specified path, reusing unchanged parts of the tree to speed up the process.TreeParser. parseFile(@NotNull Path path)Deprecated, for removal: This API element is subject to removal in a future version.UseParser.parse(Path)insteadTreeParser. parseString(@NotNull String source)Deprecated, for removal: This API element is subject to removal in a future version.UseParser.parse(String)insteadTreeParser. parseString(@NotNull String source, @NotNull Tree oldTree)Deprecated, for removal: This API element is subject to removal in a future version.UseParser.parse(String, Tree)insteadMethods 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 parse a changed source code string, reusing unchanged parts of the tree to speed up the process.TreeParser. parse(@NotNull Path path, @NotNull Tree oldTree)Use the parser to parse some source code found in a file at the specified path, reusing unchanged parts of the tree to speed up the process.TreeParser. parseString(@NotNull String source, @NotNull Tree oldTree)Deprecated, for removal: This API element is subject to removal in a future version.UseParser.parse(String, Tree)instead -
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)
-