(name)
| 106 | } |
| 107 | |
| 108 | function checkReplyExistence (name) { |
| 109 | if (name && hasKey(this[kReply], name)) return true |
| 110 | if (name && hasInstanceProperty(this[kReply], name)) return true |
| 111 | return checkExistence(this[kReply].prototype, name) |
| 112 | } |
| 113 | |
| 114 | function checkDependencies (instance, name, deps) { |
| 115 | if (deps === undefined || deps === null) { |
nothing calls this directly
no test coverage detected