| 214 | } |
| 215 | |
| 216 | bool TypeSystemHelpers::isTypeConstant(Type _type) const |
| 217 | { |
| 218 | return std::visit(util::GenericVisitor{ |
| 219 | [&](TypeConstant const&) -> bool { |
| 220 | return true; |
| 221 | }, |
| 222 | [](auto const&) -> bool { |
| 223 | return false; |
| 224 | } |
| 225 | }, _type); |
| 226 | } |
| 227 | |
| 228 | bool TypeSystemHelpers::isPrimitiveType(Type _type, PrimitiveType _primitiveType) const |
| 229 | { |
no outgoing calls
no test coverage detected