()
| 2221 | |
| 2222 | // Helper function to get the current model file path |
| 2223 | function getCurrentModelFilePath() { |
| 2224 | const pathTreeContainer = document.getElementById('path-tree-container'); |
| 2225 | if (pathTreeContainer) { |
| 2226 | return pathTreeContainer.getAttribute('data-file-path') || ''; |
| 2227 | } |
| 2228 | return ''; |
| 2229 | } |
| 2230 | |
| 2231 | // Render path tree visualization |
| 2232 | function renderPathTree(filePath, containerId) { |
no outgoing calls
no test coverage detected