| 1074 | } |
| 1075 | |
| 1076 | TryCatchClause const* TryStatement::errorClause() const { |
| 1077 | return findClause(m_clauses, "Error"); |
| 1078 | } |
| 1079 | |
| 1080 | TryCatchClause const* TryStatement::fallbackClause() const { |
| 1081 | return findClause(m_clauses); |
no test coverage detected