Ignore:
Timestamp:
11/25/21 22:08:24 (3 years ago)
Author:
Ema <ema_spirova@…>
Branches:
master
Children:
8d391a1
Parents:
59329aa
Message:

primeNG components

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trip-planner-front/node_modules/karma/lib/reporter.js

    r59329aa re29cc2e  
    4949    }
    5050
    51     let msg = input.replace(URL_REGEXP, function (_, prefix, path, __, ___, line, ____, column) {
     51    let msg = input.replace(URL_REGEXP, function (stackTracePath, prefix, path, __, ___, line, ____, column) {
    5252      const normalizedPath = prefix === 'base/' ? `${basePath}/${path}` : path
    5353      const file = lastServedFiles.find((file) => file.path === normalizedPath)
     
    6565          const original = getSourceMapConsumer(file.sourceMap).originalPositionFor({ line, column: zeroBasedColumn, bias })
    6666
     67          // If there is no original position/source for the current stack trace path, then
     68          // we return early with the formatted generated position. This handles the case of
     69          // generated code which does not map to anything, see Case 1 of the source-map spec.
     70          // https://sourcemaps.info/spec.html.
     71          if (original.source === null) {
     72            return PathUtils.formatPathMapping(path, line, column)
     73          }
     74
    6775          // Source maps often only have a local file name, resolve to turn into a full path if
    6876          // the path is not absolute yet.
     
    7078          return `${PathUtils.formatPathMapping(resolve(path, original.source), original.line, oneBasedOriginalColumn)} <- ${PathUtils.formatPathMapping(path, line, column)}`
    7179        } catch (e) {
    72           log.warn(`SourceMap position not found for trace: ${input}`)
     80          log.warn(`An unexpected error occurred while resolving the original position for: ${stackTracePath}`)
     81          log.warn(e)
    7382        }
    7483      }
Note: See TracChangeset for help on using the changeset viewer.