| 293 | } |
| 294 | |
| 295 | bool MProperty::IsStatic() const |
| 296 | { |
| 297 | if (GetGetMethod()) |
| 298 | { |
| 299 | return GetGetMethod()->IsStatic(); |
| 300 | } |
| 301 | if (GetSetMethod()) |
| 302 | { |
| 303 | return GetSetMethod()->IsStatic(); |
| 304 | } |
| 305 | return false; |
| 306 | } |
| 307 | |
| 308 | void MCore::OnManagedEventAfterShutdown(const char* eventName) |
| 309 | { |
no outgoing calls
no test coverage detected