| 12458 | //========================================================================== |
| 12459 | |
| 12460 | static PClass *NativeClassCast(PClass *from, PClass *to) |
| 12461 | { |
| 12462 | return from && to && from->IsDescendantOf(to) ? from : nullptr; |
| 12463 | } |
| 12464 | |
| 12465 | DEFINE_ACTION_FUNCTION_NATIVE(DObject, BuiltinClassCast, NativeClassCast) |
| 12466 | { |
no test coverage detected