| 121 | }*/ |
| 122 | |
| 123 | uint setFlag(bool enable, uint flag, uint flags) |
| 124 | { |
| 125 | if (enable) |
| 126 | return flags | flag; |
| 127 | else |
| 128 | return flags & (~flag); |
| 129 | } |
| 130 | |
| 131 | bool ClassFunctionDeclaration::isAbstract() const |
| 132 | { |
no outgoing calls
no test coverage detected