-- Replicate commandRowSrcSpan for testing
| 26 | |
| 27 | // -- Replicate commandRowSrcSpan for testing |
| 28 | struct TestColumnSpan { |
| 29 | int start = 0; |
| 30 | int end = 0; |
| 31 | bool valid = false; |
| 32 | }; |
| 33 | |
| 34 | static TestColumnSpan commandRowSrcSpan(const QString& lineText) { |
| 35 | int idx = lineText.indexOf(QStringLiteral(" \u00B7")); |
nothing calls this directly
no outgoing calls
no test coverage detected