| 2813 | |
| 2814 | template<auto getter> |
| 2815 | constexpr auto makePropertyDef() |
| 2816 | { |
| 2817 | return NativePropety{ nullptr, CppWrapper<decltype(getter)>::template get<getter>(), nullptr }; |
| 2818 | } |
| 2819 | |
| 2820 | template<auto getter, auto setter> |
| 2821 | constexpr auto makePropertyDef() |
nothing calls this directly
no outgoing calls
no test coverage detected