We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e296a53 commit 30c8aabCopy full SHA for 30c8aab
language-tree-sitter-utils/src/main/java/de/jplag/treesitter/TreeSitterVisitor.java
@@ -79,16 +79,6 @@ public final void traverse(Node node) {
79
* Subclasses must implement this method to populate the {@link #enterHandlers} and {@link #exitHandlers} maps with the
80
* appropriate node type handlers.
81
* </p>
82
- * <p>
83
- * Example:
84
- *
85
- * <pre>{@code
86
- * protected void initializeHandlers() {
87
- * enterHandlers.put("class_definition", node -> addToken(CLASS_BEGIN, node));
88
- * exitHandlers.put("class_definition", node -> addToken(CLASS_END, node));
89
- * }
90
- * }</pre>
91
- * </p>
92
*/
93
protected abstract void initializeHandlers();
94
0 commit comments