Searched refs:NODE_BY_BEGIN_POSITION (Results 1 – 7 of 7) sorted by relevance
29 import static com.github.javaparser.ast.Node.NODE_BY_BEGIN_POSITION;35 private final TreeSet<Comment> comments = new TreeSet<>(NODE_BY_BEGIN_POSITION);48 .collect(Collectors.toCollection(() -> new TreeSet<>(NODE_BY_BEGIN_POSITION))); in getLineComments()55 .collect(Collectors.toCollection(() -> new TreeSet<>(NODE_BY_BEGIN_POSITION))); in getBlockComments()62 .collect(Collectors.toCollection(() -> new TreeSet<>(NODE_BY_BEGIN_POSITION))); in getJavadocComments()
31 import static com.github.javaparser.ast.Node.NODE_BY_BEGIN_POSITION;37 private final TreeSet<Comment> comments = new TreeSet<>(NODE_BY_BEGIN_POSITION);50 .collect(Collectors.toCollection(() -> new TreeSet<>(NODE_BY_BEGIN_POSITION))); in getLineComments()57 .collect(Collectors.toCollection(() -> new TreeSet<>(NODE_BY_BEGIN_POSITION))); in getBlockComments()64 .collect(Collectors.toCollection(() -> new TreeSet<>(NODE_BY_BEGIN_POSITION))); in getJavadocComments()
2 …nt) comment).collect(Collectors.toCollection(() -> new TreeSet<>(NODE_BY_BEGIN_POSITION))) ==> jav…6 …Line 48) Collectors.toCollection(() -> new TreeSet<>(NODE_BY_BEGIN_POSITION)) ==> java.util.stream…7 …nt) comment).collect(Collectors.toCollection(() -> new TreeSet<>(NODE_BY_BEGIN_POSITION))) ==> jav…11 …Line 55) Collectors.toCollection(() -> new TreeSet<>(NODE_BY_BEGIN_POSITION)) ==> java.util.stream…12 …nt) comment).collect(Collectors.toCollection(() -> new TreeSet<>(NODE_BY_BEGIN_POSITION))) ==> jav…16 …Line 62) Collectors.toCollection(() -> new TreeSet<>(NODE_BY_BEGIN_POSITION)) ==> java.util.stream…
32 import static com.github.javaparser.ast.Node.NODE_BY_BEGIN_POSITION;99 TreeSet<Comment> commentsInsideChild = new TreeSet<>(NODE_BY_BEGIN_POSITION); in insertComments()
36 import static com.github.javaparser.ast.Node.NODE_BY_BEGIN_POSITION;102 TreeSet<Comment> commentsInsideChild = new TreeSet<>(NODE_BY_BEGIN_POSITION); in insertComments()
46 …public static Comparator<Node> NODE_BY_BEGIN_POSITION = (a, b) -> a.getBegin().compareTo(b.getBegi… field in Node
133 public static Comparator<NodeWithRange<?>> NODE_BY_BEGIN_POSITION = (a, b) -> { field in Node