| 2807 | |
| 2808 | template<auto memFn, int flags> |
| 2809 | constexpr auto makeMethodDef() |
| 2810 | { |
| 2811 | return NativeMethod{ nullptr, CppWrapper<decltype(memFn)>::template call<memFn>(), flags }; |
| 2812 | } |
| 2813 | |
| 2814 | template<auto getter> |
| 2815 | constexpr auto makePropertyDef() |
nothing calls this directly
no outgoing calls
no test coverage detected