()
| 1135 | } |
| 1136 | |
| 1137 | script() { |
| 1138 | // The Script calls the LogInspector which maintains state of the callbacks. |
| 1139 | // Returning a new instance of the same driver will not work while removing callbacks. |
| 1140 | if (this.#script === undefined) { |
| 1141 | this.#script = new Script(this) |
| 1142 | } |
| 1143 | |
| 1144 | return this.#script |
| 1145 | } |
| 1146 | |
| 1147 | network() { |
| 1148 | // The Network maintains state of the callbacks. |
no outgoing calls
no test coverage detected