( domainSymbol: string )
| 26 | import { isSubtype } from '../../common/type/subtype.js'; |
| 27 | import { |
| 28 | EXTENDED_REAL_TYPE, |
| 29 | INDEXED_COLLECTION_SHAPE_TYPE, |
| 30 | } from '../../common/type/primitive.js'; |
| 31 | import { MAX_ITERATION } from '../numerics/numeric.js'; |
| 32 | import { extrapolate } from '../numerics/richardson.js'; |
| 33 | import { |
| 34 | reduceCollection, |
| 35 | enumerationDeclinedAfterWalk, |
| 36 | } from './collections.js'; |
| 37 | import { extractFiniteDomainWithReason } from './logic-analysis.js'; |
| 38 | import { |
| 39 | isPossiblyCollectionTyped, |
| 40 | isTupleShapedType, |
| 41 | isValuelessCollectionTyped, |
| 42 | unionMayHoldACollection, |
| 43 | } from '../collection-utils.js'; |
| 44 | |
| 45 | /** The element descriptors of a tuple or list literal, or the child |
| 46 | * descriptors of an application; `undefined` for a symbol, a literal or a |
no outgoing calls
no test coverage detected