(e: Entry)
| 149 | // --------------------------------------------------------------------------- |
| 150 | // Slice selection |
| 151 | // --------------------------------------------------------------------------- |
| 152 | |
| 153 | export function isSliceEntry(e: Entry): boolean { |
| 154 | return ( |
| 155 | (e.class === 'specific-value' || e.class === 'identity') && |
| 156 | (e.guardLevel === 'none' || |
| 157 | e.guardLevel === 'real-simple' || |
| 158 | e.guardLevel === 'complex-domain') |
| 159 | ); |
| 160 | } |
| 161 |
no outgoing calls
no test coverage detected