The current implementation of ParsecFile only supports single files. Extending support for projects with multiple files is crucial.
Possibly modify the constructor to take a list of C source files or a glob pattern (e.g., *.c) instead of a single file path.
The current implementation of
ParsecFileonly supports single files. Extending support for projects with multiple files is crucial.Possibly modify the constructor to take a list of C source files or a glob pattern (e.g.,
*.c) instead of a single file path.