chore: typing implicit any field (as any for now, will fix later)

This commit is contained in:
Kacper Kula 2024-11-06 20:45:36 +00:00
parent 81392c941f
commit 2eb4dd353d

View file

@ -21,7 +21,7 @@ export interface ParsedLanguage {
class SQLSealErrorListener extends ErrorListener<any> {
private errors: string[] = [];
syntaxError(recognizer, offendingSymbol: any, line: number, charPositionInLine: number, msg: string, e: RecognitionException | undefined): void {
syntaxError(recognizer: any, offendingSymbol: any, line: number, charPositionInLine: number, msg: string, e: RecognitionException | undefined): void {
this.errors.push(`Line ${line}:${charPositionInLine} ${msg}`);
}