Package org.sonar.python.tree
Class TreeUtils
- java.lang.Object
-
- org.sonar.python.tree.TreeUtils
-
public class TreeUtils extends Object
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static TreefirstAncestor(Tree tree, Predicate<Tree> predicate)static TreefirstAncestorOfKind(Tree tree, Tree.Kind... kinds)static booleanhasDescendant(Tree tree, Predicate<Tree> predicate)static List<Token>nonWhitespaceTokens(Tree tree)static List<Token>tokens(Tree tree)
-
-
-
Method Detail
-
firstAncestor
@CheckForNull public static Tree firstAncestor(Tree tree, Predicate<Tree> predicate)
-
firstAncestorOfKind
@CheckForNull public static Tree firstAncestorOfKind(Tree tree, Tree.Kind... kinds)
-
-