| 214 | } |
| 215 | |
| 216 | void CopyAttribute(Statement& source, Statement& target, |
| 217 | Statement::StatementAttributeId attribute_id) { |
| 218 | auto optional_value = source.GetAttribute(attribute_id); |
| 219 | if (optional_value) { |
| 220 | target.SetAttribute(attribute_id, *optional_value); |
| 221 | } |
| 222 | } |
| 223 | } // namespace |
| 224 | |
| 225 | // Public |
no test coverage detected