| 1414 | } |
| 1415 | |
| 1416 | void ZepBuffer::ToggleFileFlag(uint32_t flags) |
| 1417 | { |
| 1418 | m_fileFlags = ZSetFlags(m_fileFlags, flags, !ZTestFlags(m_fileFlags, flags)); |
| 1419 | } |
| 1420 | |
| 1421 | GlyphRange ZepBuffer::GetExpression(ExpressionType type, const GlyphIterator location, const std::vector<char>& beginExpression, const std::vector<char>& endExpression) const |
| 1422 | { |
no test coverage detected