org.treesitter.CleanerRunner Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tree-sitter Show documentation
Show all versions of tree-sitter Show documentation
Next generation Tree Sitter Java binding
package org.treesitter;
import java.lang.ref.Cleaner;
public abstract class CleanerRunner {
static Cleaner cleaner = Cleaner.create();
public static void register(Object obj, Runnable action){
cleaner.register(obj, action);
};
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy