| 75 | void Function::setIsFromDebug(bool d) { _fromDebug = d; } |
| 76 | void Function::setIsConstructor(bool f) { _constructor = f; } |
| 77 | void Function::setIsDestructor(bool f) { _destructor = f; } |
| 78 | void Function::setIsVirtual(bool f) { _virtualFunction = f; } |
| 79 | void Function::setIsExported(bool f) { _exported = f; } |
| 80 | void Function::setIsVariadic(bool f) { _variadic = f; } |
no outgoing calls
no test coverage detected