( type: MemoryType, )
| 1075 | ) |
| 1076 | |
| 1077 | function isInstructionsMemoryType( |
| 1078 | type: MemoryType, |
| 1079 | ): type is InstructionsMemoryType { |
| 1080 | return ( |
| 1081 | type === 'User' || |
| 1082 | type === 'Project' || |
| 1083 | type === 'Local' || |
| 1084 | type === 'Managed' |
| 1085 | ) |
| 1086 | } |
| 1087 | |
| 1088 | // Load reason to report for top-level (non-included) files on the next eager |
| 1089 | // getMemoryFiles() pass. Set to 'compact' by resetGetMemoryFilesCache when |