net.sourceforge.pmd.lang.velocity.cpd.VtlCpdLexer Maven / Gradle / Ivy
/*
* BSD-style license; for more info see http://pmd.sourceforge.net/license.html
*/
package net.sourceforge.pmd.lang.velocity.cpd;
import java.io.IOException;
import net.sourceforge.pmd.cpd.impl.JavaccCpdLexer;
import net.sourceforge.pmd.lang.TokenManager;
import net.sourceforge.pmd.lang.ast.impl.javacc.CharStream;
import net.sourceforge.pmd.lang.ast.impl.javacc.JavaccToken;
import net.sourceforge.pmd.lang.document.TextDocument;
import net.sourceforge.pmd.lang.velocity.ast.VtlTokenKinds;
/**
* Note: This class has been called VmTokenizer in PMD 6
.
*/
public class VtlCpdLexer extends JavaccCpdLexer {
@Override
protected TokenManager makeLexerImpl(TextDocument doc) throws IOException {
return VtlTokenKinds.newTokenManager(CharStream.create(doc));
}
}