forked from nodejs/node
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Commit 3e1b1dd ("Remove excessive copyright/license boilerplate") broke some of the message tests because without the license boilerplate at the top, the line numbers no longer match up. PR-URL: nodejs#316 Reviewed-By: Bert Belder <[email protected]>
- Loading branch information
1 parent
3e1b1dd
commit 635337f
Showing
5 changed files
with
5 additions
and
5 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
before | ||
*test*message*throw_custom_error.js:31 | ||
*test*message*throw_custom_error.js:7 | ||
throw ({ name: 'MyCustomError', message: 'This is a custom message' }); | ||
^ | ||
MyCustomError: This is a custom message |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
before | ||
*test*message*throw_in_line_with_tabs.js:32 | ||
*test*message*throw_in_line_with_tabs.js:8 | ||
throw ({ foo: 'bar' }); | ||
^ | ||
[object Object] |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
before | ||
*test*message*throw_non_error.js:31 | ||
*test*message*throw_non_error.js:7 | ||
throw ({ foo: 'bar' }); | ||
^ | ||
[object Object] |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
|
||
*test*message*throw_null.js:25 | ||
*test*message*throw_null.js:4 | ||
throw null; | ||
^ | ||
null |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
|
||
*test*message*throw_undefined.js:25 | ||
*test*message*throw_undefined.js:4 | ||
throw undefined; | ||
^ | ||
undefined |