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

com.greenpepper.shaded.antlr.ASdebug.TokenOffsetInfo Maven / Gradle / Ivy

package antlr.ASdebug;

/**
 * Provides offset info for a token.
* All offsets are 0-based. * @author Prashant Deva */ public class TokenOffsetInfo { public final int beginOffset, length; public TokenOffsetInfo(int offset, int length) { this.beginOffset = offset; this.length = length; } public int getEndOffset() { return beginOffset+length-1; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy