SQLiteParserInit initializes any static state used to implement SQLiteParser. By default the static state used to implement the parser is lazily initialized during the first call to NewSQLiteParser(). You can call this function if you wish to initialize the static state ahead of time.
()
| 1209 | // NewSQLiteParser(). You can call this function if you wish to initialize the static state ahead |
| 1210 | // of time. |
| 1211 | func SQLiteParserInit() { |
| 1212 | staticData := &SQLiteParserParserStaticData |
| 1213 | staticData.once.Do(sqliteparserParserInit) |
| 1214 | } |
| 1215 | |
| 1216 | // NewSQLiteParser produces a new parser instance for the optional input antlr.TokenStream. |
| 1217 | func NewSQLiteParser(input antlr.TokenStream) *SQLiteParser { |