7.7. Opt_Compiler_Processor class
7.7.6. _process()
7.7.5. _extractAttributes()
« Previous
7.7.7. configure()
Next »

7.7.6. _process()

ConstructMethod
Visibilityfinal protected
Referencevoid _process(Opt_Xml_Scannable $node)
Argument list
$node - Opt_Xml_Scannable
The node whose children should be enqueued for processing.

This method should be used only in Opt_Compiler_Processor::processNode(). It adds the children of $node to the compiler processing queue. The most common use is to inform the compiler to parse the content of the instruction tag:

public function processNode(Opt_Xml_Node $node)
{
    // Parse the children, too.
    $this->_process($node);
} // end processNode();

The node itself is not enqueued. If you want to enqueue a certain node directly, please use _enqueue().

See also:

7.7.6. _process()
7.7. Opt_Compiler_Processor class
« Previous
7.7.5. _extractAttributes()
Next »
7.7.7. configure()