Directory including #16
Labels
compiler
Anything about the compiler
enhancement
New feature or request
quality-of-life
Anything that focuses on making life easier
The compiler should allow directory including.
There are basically two approaches to this: recursion and tree traversal.
Solving this issue with recursion requires the
promise
keyword since we will need two different procedures calling each other causing cycle dependencies.Using tree traversal algorithm on the other hand does not require a completely new feature to the language. However, this still requires the implementation of a stack for include files which may cause a large change in the system.
Because of these, it may not be worth it to work on this issue right now.
The text was updated successfully, but these errors were encountered: