mirror of
https://github.com/github/codeql.git
synced 2025-12-16 08:43:11 +01:00
13 lines
281 B
Java
13 lines
281 B
Java
package net.sourceforge.pmd.cpd;
|
|
|
|
/*
|
|
* This is a stub definition for pmd's Tokenizer interface
|
|
* including only the API used by the GoLanguage class.
|
|
*/
|
|
|
|
import java.util.List;
|
|
|
|
public interface Tokenizer {
|
|
void tokenize(SourceCode tokens, List<TokenEntry> tokenEntries);
|
|
}
|