All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.treesitter.TSQueryMatch Maven / Gradle / Ivy

The newest version!
package org.treesitter;

public class TSQueryMatch {
    private int id;
    private int patternIndex;
    private int captureIndex;
    private TSQueryCapture[] captures;

    public int getId() {
        return id;
    }

    public int getPatternIndex() {
        return patternIndex;
    }

    public int getCaptureIndex() {
        return captureIndex;
    }

    public TSQueryCapture[] getCaptures() {
        return captures;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy