Open Anatoliy057 opened 4 years ago
You cannot use procedures defined in dynamic includes (e.g. include(arg)
where arg
isn't a hard-coded string) outside of those includes. Static analysis happens at compile time, and dynamic includes are simply not known at that stage. The solution is to hard-code all paths in your includes, where you can also use include_dir()
to include all files in a certain directory in a static way.
As a side note, keep in mind that when using dynamic includes, static analysis can no longer analyze these included files because they are not known at compile time. This means that you might get some exceptions in runtime that static analysis would have otherwise caught earlier (in compile time) otherwise.
I would like to attach a (suppressable) compiler warning if dynamic includes are used, with basic information about what kinds of error they may cause, so that things like this can be understood without having to file a bug report. So let's leave this open as a placeholder for adding that compiler warning.
Static analysis will throw exception with message "Procedure cannot be resolved" for all user procedures in this case:
If replace _path with 'test-2.ms' - everything works If disable static analysis, everything works