( runtime: Runtime, directory: string, scope: InstructionScope, projectName?: string )
| 250 | * @param projectName - Project name (only for "project" scope) |
| 251 | */ |
| 252 | export async function readInstructionSetFromRuntime( |
| 253 | runtime: Runtime, |
| 254 | directory: string, |
| 255 | scope: InstructionScope, |
| 256 | projectName?: string |
| 257 | ): Promise<InstructionSet | null> { |
| 258 | return readInstructionSetWith(createRuntimeFileReader(runtime), directory, scope, projectName); |
| 259 | } |
| 260 | |
| 261 | /** |
| 262 | * Searches for instruction files across multiple directories in priority order. |
no test coverage detected