| 1328 | } |
| 1329 | |
| 1330 | bool is_complex(TypeKind tk) |
| 1331 | { |
| 1332 | switch (tk) { |
| 1333 | case TK_ARRAY: |
| 1334 | case TK_SEQUENCE: |
| 1335 | case TK_MAP: |
| 1336 | case TK_STRUCTURE: |
| 1337 | case TK_UNION: |
| 1338 | case TK_BITSET: |
| 1339 | return true; |
| 1340 | default: |
| 1341 | return false; |
| 1342 | } |
| 1343 | } |
| 1344 | |
| 1345 | bool is_sequence_like(TypeKind tk) |
| 1346 | { |
no outgoing calls
no test coverage detected