Lines Matching refs:inspected
322 // may be inspected.
392 const inputPreviewCallback = (error, inspected) => {
393 if (inspected == null) {
400 if (line === inspected) {
410 if (inspected === 'undefined' &&
415 inputPreview = inspected;
424 if (inspected.length * 2 >= maxColumns &&
425 getStringWidth(inspected) > maxColumns) {
428 for (const char of new SafeStringIterator(inspected)) {
434 inspected = `${res}...`;
439 const lineBreakPos = StringPrototypeIndexOf(inspected, '\n');
441 inspected = `${StringPrototypeSlice(inspected, 0, lineBreakPos)}`;
445 `\u001b[90m${inspected}\u001b[39m` :
446 `// ${inspected}`;