Intermediate class parsing structure.
The phpDocumentor_IntermediateParser class uses this class and its cousin, ProceduralPages to organize all parsed source code elements. Data is fed to each immediately after it is parsed, and at conversion time, everything is organized.
The Classes class is responsible for all inheritance, including resolving name conflicts between classes, determining which classes extend other classes, and is responsible for all inheritance of documentation.
Located in /phpDocumentor/Classes.inc (line 70)
While parsing, add a class to the list of parsed classes
sets up the $classesbyfile, $classesbynamefile, $extendsbyfile, $classchildrenbyfile, $roots arrays, and sets $curclass
While parsing, add a variable to the list of parsed variables
sets up the $constsbyfile array using $curfile and $curclass
While parsing, add a method to the list of parsed methods
sets up the $methodsbyfile array using $curfile and $curclass
Mark a package as being used in a class
While parsing, add a variable to the list of parsed variables
sets up the $varsbyfile array using $curfile and $curclass
Get the parserClass representation of a class from its name and file
Search for a class in a package
Used by parserData::getClasses() to retrieve classes defined in file $path
retrieves the array entry from $classesbyfile for $path
If a package contains two classes with the same name, this function finds that conflict
Returns the $classconflicts entry for class $class, minus its own path
Get all classes confirmed in parsing to be descended class $parclass in file $file
Find the parent class of a class in file $file
uses 3 tests to find the parent classname:
Get a list of all root classes indexed by package. Used to generate class trees by Converter
Main processing engine for setting up class inheritance.
This function uses $roots to traverse the inheritance tree via processChild() and returns the data structures phpDocumentor_IntermediateParser needs to convert parsed data to output using phpDocumentor_IntermediateParser::Convert()
Prepare to parse a new file
sets $curfile to $file and $curclass to false (no class being parsed)
This function recursively climbs up the class tree, setting inherited information like package and adds the elements to phpDocumentor_IntermediateParser.
Using structures defined in Classes, the function first sets package information, and then seeks out child classes. It uses 3 tests to determine whether a class is a child class.
Find the parent class of $class, and set up structures to note this fact
Modifies the parserClass element in $classesbyfile to use the parent's package, and inherit methods/vars
Documentation generated on Mon, 05 Dec 2011 20:56:47 -0600 by phpDocumentor 1.4.4