-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adjust check's node formatting in crash output. (#4217)
I'm trying to make the line of code more clearly nested in crash output (the way it is, I sometimes forget about it). Also, `Check::HandleFunctionDecl` is the old naming scheme, it's now all `Check::HandleParseNode`, so I'm replacing that. Before: ``` 3. extern_library_owner.carbon:6:1: Check::HandleFunctionDecl extern fn F(); ^~~~~~~~~~~~~~ #0 0x0000564c0057ef1d llvm::sys::PrintStackTrace(llvm::raw_ostream&, int) ... ``` After: ``` 3. extern_library_owner.carbon:6:1: checking FunctionDecl extern fn F(); ^~~~~~~~~~~~~~ #0 0x00005629029ffd9d llvm::sys::PrintStackTrace(llvm::raw_ostream&, int) ... ```
- Loading branch information
Showing
3 changed files
with
8 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters