(parts: string[], action: SessionAction)
| 230 | } |
| 231 | |
| 232 | function appendRefLabel(parts: string[], action: SessionAction): void { |
| 233 | const refLabel = action.result?.refLabel; |
| 234 | if (typeof refLabel === 'string' && refLabel.trim().length > 0) { |
| 235 | parts.push(formatScriptArg(refLabel)); |
| 236 | } |
| 237 | } |
no test coverage detected