summaryrefslogtreecommitdiffstats
path: root/tests/reflection/reflect-imported-code.slang
Commit message (Collapse)AuthorAge
* Include imported code when generating reflection dataTim Foley2017-06-26
- The basic idea is simple: be sure to enumerate code in `__import`ed modules when generating reflection info - Note that we don't currently allow an entry point to appear in an imported module, so we only consider globlal-scope parameters - Although there isn't currently a real implementation of namespacing, I went ahead and ensured that parameters in imported modules are treated as distinct from parameters in the user's code, even if they have the same name.