| 1070 | } |
| 1071 | |
| 1072 | TryCatchClause const* TryStatement::panicClause() const { |
| 1073 | return findClause(m_clauses, "Panic"); |
| 1074 | } |
| 1075 | |
| 1076 | TryCatchClause const* TryStatement::errorClause() const { |
| 1077 | return findClause(m_clauses, "Error"); |
no test coverage detected