(kind: string, error: string)
| 102 | } |
| 103 | |
| 104 | error(kind: string, error: string) { |
| 105 | if(this.errorReporter) { |
| 106 | this.errorReporter(kind, error); |
| 107 | } else { |
| 108 | console.error(kind + ":", error); |
| 109 | } |
| 110 | } |
| 111 | |
| 112 | unregisterDatabase(name) { |
| 113 | let db = this.nameToDatabase[name]; |
no outgoing calls
no test coverage detected