Conversation
This comment was marked as outdated.
This comment was marked as outdated.
commented
Apr 20, 2022
Collaborator
jasnell
approved these changes
Apr 20, 2022
This was referenced Apr 21, 2022
BridgeAR
reviewed
Apr 22, 2022
Comment on lines
+582
to
+583
| const name = descriptor.value.name; | ||
| return typeof name === 'symbol' ? SymbolPrototypeToString(name) : name; |
Member
There was a problem hiding this comment.
Suggested change
| const name = descriptor.value.name; | |
| return typeof name === 'symbol' ? SymbolPrototypeToString(name) : name; | |
| return String(descriptor.value.name); |
21 tasks
This was referenced Apr 24, 2022
commented
May 19, 2022
Collaborator
BridgeAR
approved these changes
May 19, 2022
This was referenced May 20, 2022
commented
Jun 5, 2022
Member
Author
commented
Jun 16, 2022
Collaborator
31 tasks
commented
Jun 17, 2022
Collaborator
commented
Jun 17, 2022
Member
|
Landed in 027c288 |
This was referenced Jun 18, 2022
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fixed #42773
Constructor name from
getConstructorNamewill be converted to string by template literal (${constructor}) in a subsequent process.In this case,
getConstructorNameneed to convert symbol to string bySymbol.prototype.toStringbeforehand since${Symbol()}throws TypeError (spec).