Retrieves the String sort of the context.
()
| 176 | * Retrieves the String sort of the context. |
| 177 | **/ |
| 178 | public SeqSort<CharSort> getStringSort() |
| 179 | { |
| 180 | if (m_stringSort == null) { |
| 181 | m_stringSort = mkStringSort(); |
| 182 | } |
| 183 | return m_stringSort; |
| 184 | } |
| 185 | |
| 186 | /** |
| 187 | * Create a new uninterpreted sort. |
nothing calls this directly
no test coverage detected