Function
rememberGeneratedUuidContextOutputs
(step, generatedContextNames)
Source from the content-addressed store, hash-verified
| 289 | } |
| 290 | |
| 291 | function rememberGeneratedUuidContextOutputs(step, generatedContextNames) { |
| 292 | for (const output of step?.context_outputs ?? []) { |
| 293 | if (output?.generate === 'uuid_v4' && typeof output.name === 'string') { |
| 294 | generatedContextNames.add(output.name); |
| 295 | } |
| 296 | } |
| 297 | } |
| 298 | |
| 299 | function lintFile(p) { |
| 300 | const rel = path.relative(sourceDir, p); |
Tested by
no test coverage detected