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

gg.jte.runtime.DebugInfo Maven / Gradle / Ivy

package gg.jte.runtime;

public class DebugInfo {
    public final String name;
    public final int line;

    public DebugInfo(String name, int line) {
        this.name = name;
        this.line = line;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy