Example usage for org.antlr.v4.runtime ANTLRFileStream subclass-usage

List of usage examples for org.antlr.v4.runtime ANTLRFileStream subclass-usage

Introduction

In this page you can find the example usage for org.antlr.v4.runtime ANTLRFileStream subclass-usage.

Usage

From source file com.yahoo.yqlplus.language.internal.parser.CaseInsensitiveFileStream.java

/**
 * Enable ANTLR to do case insensitive comparisons when reading from files without throwing away the case in the token.
 */

public class CaseInsensitiveFileStream extends ANTLRFileStream {
    public CaseInsensitiveFileStream(String fileName) throws IOException {

From source file org.ledyba.sora.parser.FortranStream.java

public class FortranStream extends ANTLRFileStream {
    private int sourceForm;

    public static final int FREE_FORM = 1;
    public static final int FIXED_FORM = 2;