Lines Matching refs:notification
237 function matchMethod(notification) { argument
238 return notification.method === methodOrPredicate;
242 let notification = null;
245 notification = this._unprocessedNotifications.shift();
247 notification = await new Promise(
250 } while (!predicate(notification));
251 return notification;
270 (notification) =>
271 this._isBreakOnLineNotification(notification, line, url),
279 _matchesConsoleOutputNotification(notification, type, values) { argument
282 if (notification.method === 'Runtime.consoleAPICalled') {
283 const params = notification.params;
298 (notification) => this._matchesConsoleOutputNotification(notification,
306 await this.waitForNotification((notification) => {
307 return notification.method === 'Runtime.executionContextDestroyed' &&
308 notification.params.executionContextId === 1;