| 2703 | } |
| 2704 | |
| 2705 | bool Variable::isStlStringViewType() const |
| 2706 | { |
| 2707 | return getFlag(fIsStlType) && valueType() && valueType()->container && valueType()->container->stdStringLike && valueType()->container->view; |
| 2708 | } |
| 2709 | |
| 2710 | std::string Variable::getTypeName() const |
| 2711 | { |
no test coverage detected