rewriteErrorTrace() — vue Function Reference
Architecture documentation for the rewriteErrorTrace() function in source-map-support.ts from the vue codebase.
Entity Profile
Dependency Diagram
graph TD 84354631_63fc_95c1_5d39_e0e359ee44f3["rewriteErrorTrace()"] a0250ae2_2716_65d8_1d1d_df4785a5c81f["createBundleRendererCreator()"] a0250ae2_2716_65d8_1d1d_df4785a5c81f -->|calls| 84354631_63fc_95c1_5d39_e0e359ee44f3 0f8756a5_47bc_aee5_947a_5b6fff09373e["rewriteTraceLine()"] 84354631_63fc_95c1_5d39_e0e359ee44f3 -->|calls| 0f8756a5_47bc_aee5_947a_5b6fff09373e style 84354631_63fc_95c1_5d39_e0e359ee44f3 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
packages/server-renderer/src/bundle-renderer/source-map-support.ts lines 13–27
export function rewriteErrorTrace(
e: any,
mapConsumers: {
[key: string]: typeof SourceMapConsumer
}
) {
if (e && typeof e.stack === 'string') {
e.stack = e.stack
.split('\n')
.map(line => {
return rewriteTraceLine(line, mapConsumers)
})
.join('\n')
}
}
Domain
Subdomains
Calls
Called By
Source
Frequently Asked Questions
What does rewriteErrorTrace() do?
rewriteErrorTrace() is a function in the vue codebase.
What does rewriteErrorTrace() call?
rewriteErrorTrace() calls 1 function(s): rewriteTraceLine.
What calls rewriteErrorTrace()?
rewriteErrorTrace() is called by 1 function(s): createBundleRendererCreator.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free