| 328 | } |
| 329 | |
| 330 | void IfcLoader::MoveToLineArgument(const uint32_t expressID, const uint32_t argumentIndex) const |
| 331 | { |
| 332 | const auto lineIt = _lines.find(expressID); |
| 333 | if (lineIt == _lines.end()) return; |
| 334 | _tokenStream->MoveTo(lineIt->second->tapeOffset); |
| 335 | ArgumentOffset(argumentIndex); |
| 336 | } |
| 337 | |
| 338 | void IfcLoader::MoveToHeaderLineArgument(const uint32_t lineID, const uint32_t argumentIndex) const |
| 339 | { |
no test coverage detected