Revert "fix: Use # to denote line number in stack traces" (#6119)

This reverts commit c4c6a8dae4

There is some controversy about this change because vscode doesn't interpret the fragments correctly. Needs more discussion before landing.
This commit is contained in:
Ryan Dahl 2020-06-05 11:37:40 -04:00 committed by GitHub
parent c4c6a8dae4
commit 78bfeebad1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
19 changed files with 56 additions and 56 deletions

View file

@ -119,7 +119,7 @@ function getFileLocation(callSite: CallSite, isInternal = false): string {
const lineNumber = callSite.getLineNumber();
if (lineNumber != null) {
result += `${black("#")}${yellow(lineNumber.toString())}`;
result += `${black(":")}${yellow(lineNumber.toString())}`;
const columnNumber = callSite.getColumnNumber();
if (columnNumber != null) {