mirror of
https://github.com/h-sphere/sql-seal.git
synced 2026-07-22 10:10:28 +00:00
chore: typing implicit any field (as any for now, will fix later)
This commit is contained in:
parent
81392c941f
commit
2eb4dd353d
1 changed files with 1 additions and 1 deletions
|
|
@ -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}`);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue