import { InputStream, CommonTokenStream, Lexer } from 'antlr4'; import { HiveSqlLexer } from '../lib/hive/HiveSqlLexer'; import { HiveSql } from '../lib/hive/HiveSql'; import BasicParser from './common/basicParser'; export default class HiveSQL extends BasicParser { public createLexer(input: string): Lexer { const chars = new InputStream(input); const lexer = new HiveSqlLexer(chars) as Lexer; return lexer; } public createParserFromLexer(lexer: Lexer) { const tokenStream = new CommonTokenStream(lexer); return new HiveSql(tokenStream); } }