| 118 | |
| 119 | |
| 120 | bool TypeEnvironment::isFixedTypeVar(Type const& _typeVar) const |
| 121 | { |
| 122 | return |
| 123 | std::holds_alternative<TypeVariable>(_typeVar) && |
| 124 | m_fixedTypeVariables.count(std::get<TypeVariable>(_typeVar).index()) != 0; |
| 125 | } |
| 126 | |
| 127 | void TypeEnvironment::fixTypeVars(std::vector<Type> const& _typeVars) |
| 128 | { |
no test coverage detected