aboutsummaryrefslogtreecommitdiffstats
path: root/config-model/src/main/java/com/yahoo/searchdefinition/parser/SimpleCharStream.java
blob: 0b275c6a7224e87709f3fc3243cc6a0db2d09eac (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.searchdefinition.parser;

import com.yahoo.javacc.FastCharStream;

/**
 * @author Simon Thoresen Hult
 */
public class SimpleCharStream extends FastCharStream implements com.yahoo.searchdefinition.parser.CharStream,
                                                                com.yahoo.vespa.indexinglanguage.parser.CharStream {

    public SimpleCharStream(String input) {
        super(input);
    }

}