This repository was archived by the owner on Mar 28, 2024. It is now read-only.

Description
Preflight Checklist
Problem Description
Code editors might want to show the user some useful data about their code. So, to do this, the compiler will need to compile the user's code. But the compiler will not need the final output file. So the compiler would be doing extra unnecessary work!
Proposed Solution
Add the --only-analyse flag. This flag will tell the compiler to only analyse the code without actually making an intermediate language file or compiling it to machine code.
Alternatives Considered
Make users suffer
Additional Information
No response