Pelzini

This is the code documentation for the Pelzini project

class JavascriptAnalyser

Analyses the javascript tokens, and creates a set of ParserItem objects.

Extending this class

<?php
/**
* New class description goes here
* 
* @author Your Name, 2024-04-24
**/
class NewClassName extends JavascriptAnalyser {
    
    /**
    * Resets any state variables used by this class back to their initial state
    **/
    public function resetState () {
        // Method code goes here
    }
    
    /**
    * Should create ParserItem objects that represent the provided tokens
    * and apply those objects to the ParserFile specified.
    **/
    public function process ($tokens, $parser_file) {
        // Method code goes here
    }
    
}
?>