| 53 | } |
| 54 | |
| 55 | Entity::KeyValuePairs ScriptEntityNode::getKeyValuePairs(const std::string& prefix) { |
| 56 | Entity* entity = Node_getEntity(*this); |
| 57 | return (entity != NULL) ? entity->getKeyValuePairs(prefix) : Entity::KeyValuePairs(); |
| 58 | } |
| 59 | |
| 60 | void ScriptEntityNode::forEachKeyValue(EntityVisitor& visitor) { |
| 61 | Entity* entity = Node_getEntity(*this); |
no test coverage detected