Lines Matching refs:line
43 for (const line of lines)
44 dataCallback(line);
253 _isBreakOnLineNotification(message, line, expectedScriptPath) {
261 assert.strictEqual(location.lineNumber, line);
266 waitForBreakOnLine(line, url) {
270 this._isBreakOnLineNotification(notification, line, url),
271 `break on ${url}:${line}`);
346 (line) => {
347 this.emit('stdout', line);
348 this._logger.log('[out]', line);
383 onStderrLine(line) {
384 this.emit('stderr', line);
385 this._logger.log('[err]', line);
387 const matches = line.match(/Debugger listening on ws:\/\/.+:(\d+)\/.+/);
394 this._stderrLineCallback(line);
397 this._unprocessedStderrLines.push(line);