| 234 | } |
| 235 | |
| 236 | experimental::Type TypeSystemHelpers::functionType(experimental::Type _argType, experimental::Type _resultType) const |
| 237 | { |
| 238 | return typeSystem.type(PrimitiveType::Function, {_argType, _resultType}); |
| 239 | } |
| 240 | |
| 241 | std::tuple<experimental::Type, experimental::Type> TypeSystemHelpers::destFunctionType(Type _functionType) const |
| 242 | { |
no test coverage detected