| 66 | void Function::setWrappedFunctionName(const std::string& n) { _wrapperdFunctionName = n; } |
| 67 | void Function::setStartLine(const retdec::common::Address& l) { _startLine = l; } |
| 68 | void Function::setEndLine(const retdec::common::Address& l) { _endLine = l; } |
| 69 | void Function::setIsDecompilerDefined() { _linkType = DECOMPILER_DEFINED; } |
| 70 | void Function::setIsUserDefined() { _linkType = USER_DEFINED; } |
| 71 | void Function::setIsStaticallyLinked() const { _linkType = STATICALLY_LINKED; } |
no outgoing calls
no test coverage detected