File A includes files B and C.
C thus has access to all the stuff defined in A and B, but C doesn't know that. How can I tell C that it actually has access so that IntelliSense works?
Perhaps a more clear example:
If master.php includes library.php and page.php then page.php has access to library.php, but there's no way for page.php to know that. I want to manually tell page.php that library.php is already included, and have Komodo save this in some meta data or project file.