-
Notifications
You must be signed in to change notification settings - Fork 68
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
backtrace: add support for generic backtraces
Sometimes exceptions can contain manual backtraces that quack similar to Ruby exceptions, but do not stricly adhere their template. I stumbled upon this issues, when I was working with SCSS. It sets a couple of custom first frames such as: ``` Sass::SyntaxError: Undefined mixin 'animation'. /home/app/assets/stylesheets/error_pages.scss:139:in `animation' /home/app/app/assets/stylesheets/error_pages.scss:139 ``` Previously, we were not able to parse the second frame. Furthermore, we now raise error if we cannot parse a stack frame to simplify debugguging and improving our parser.
- Loading branch information
Showing
2 changed files
with
59 additions
and
3 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