(str)
| 105 | } |
| 106 | |
| 107 | function isNotLegacyObjectPrototypeMethod(str) { |
| 108 | return isIdentifier(str) && |
| 109 | str !== '__defineGetter__' && |
| 110 | str !== '__defineSetter__' && |
| 111 | str !== '__lookupGetter__' && |
| 112 | str !== '__lookupSetter__'; |
| 113 | } |
| 114 | |
| 115 | function getGlobalLexicalScopeNames(contextId) { |
| 116 | return sendInspectorCommand((session) => { |
nothing calls this directly
no test coverage detected