| 115 | } |
| 116 | |
| 117 | std::string FileContent::printObject(NodeId nodeId) const { |
| 118 | if (!nodeId || (nodeId >= m_objects.size())) return ""; |
| 119 | return m_objects[nodeId].print(m_symbolTable, nodeId, |
| 120 | GetDefinitionFile(nodeId), m_fileId); |
| 121 | } |
| 122 | |
| 123 | std::string FileContent::printSubTree(NodeId nodeId) const { |
| 124 | if (!nodeId || (nodeId >= m_objects.size())) return ""; |
no test coverage detected