public EspReader()

in src/main/java/org/apache/sling/scripting/javascript/io/EspReader.java [203:214]


    public EspReader(Reader baseReader) {
        super(baseReader);
        this.input = new PushbackReader(baseReader, 100);
        this.stateStack = new Stack<Byte>();
        this.lineStart = true;
        this.verbatimChars = -1;
        this.quoteChar = 0;
        this.escape = false;

        // Start in ESP (template text) state
        pushState(PARSE_STATE_ESP);
    }