Function
staticToolConnection
(source: StaticSourceDecl)
Source from the content-addressed store, hash-verified
| 1363 | |
| 1364 | const staticToolOwner = (): Owner => (subject == null ? "org" : "user"); |
| 1365 | const staticToolConnection = (source: StaticSourceDecl): ConnectionName => |
| 1366 | ConnectionName.make(source.id === EXECUTOR_SOURCE_ID ? "coreTools" : "static"); |
| 1367 | |
| 1368 | const staticSources = (): readonly StaticSourceDecl[] => { |
| 1369 | const byId = new Map<string, StaticSourceDecl>(); |
Tested by
no test coverage detected