(name)
| 51760 | // with at least two underscores. The @ character indicates that the name is denoted by a well known ES |
| 51761 | // Symbol instance and the # character indicates that the name is a PrivateIdentifier. |
| 51762 | function isReservedMemberName(name) { |
| 51763 | return name.charCodeAt(0) === 95 /* CharacterCodes._ */ && |
| 51764 | name.charCodeAt(1) === 95 /* CharacterCodes._ */ && |
| 51765 | name.charCodeAt(2) !== 95 /* CharacterCodes._ */ && |
| 51766 | name.charCodeAt(2) !== 64 /* CharacterCodes.at */ && |
| 51767 | name.charCodeAt(2) !== 35 /* CharacterCodes.hash */; |
| 51768 | } |
| 51769 | function getNamedMembers(members) { |
| 51770 | var result; |
| 51771 | members.forEach(function (symbol, id) { |
no outgoing calls
no test coverage detected