| 80 | struct FunctionWrapper |
| 81 | { |
| 82 | static Value Invoke(FuncType function, const std::vector<Value>& arguments) |
| 83 | { |
| 84 | return UnpackCaller().operator()<FuncType, Arity>(function, arguments); |
| 85 | } |
| 86 | }; |
| 87 | |
| 88 | template<typename FuncType, int Arity> |
nothing calls this directly
no test coverage detected