SQLiteLexerInit initializes any static state used to implement SQLiteLexer. By default the static state used to implement the lexer is lazily initialized during the first call to NewSQLiteLexer(). You can call this function if you wish to initialize the static state ahead of time.
()
| 988 | // NewSQLiteLexer(). You can call this function if you wish to initialize the static state ahead |
| 989 | // of time. |
| 990 | func SQLiteLexerInit() { |
| 991 | staticData := &SQLiteLexerLexerStaticData |
| 992 | staticData.once.Do(sqlitelexerLexerInit) |
| 993 | } |
| 994 | |
| 995 | // NewSQLiteLexer produces a new lexer instance for the optional input antlr.CharStream. |
| 996 | func NewSQLiteLexer(input antlr.CharStream) *SQLiteLexer { |