( newSQLiteQueryExecutor: ?SQLiteQueryExecutorWrapper, id: DatabaseIdentifier = databaseIdentifier.MAIN, )
| 22 | } |
| 23 | |
| 24 | function setSQLiteQueryExecutor( |
| 25 | newSQLiteQueryExecutor: ?SQLiteQueryExecutorWrapper, |
| 26 | id: DatabaseIdentifier = databaseIdentifier.MAIN, |
| 27 | ) { |
| 28 | if (id === databaseIdentifier.RESTORED) { |
| 29 | restoredQueryExecutor = newSQLiteQueryExecutor; |
| 30 | return; |
| 31 | } |
| 32 | mainQueryExecutor = newSQLiteQueryExecutor; |
| 33 | } |
| 34 | |
| 35 | let dbModule: ?EmscriptenModule = null; |
| 36 |
no outgoing calls
no test coverage detected