Same name and namespace in other branches
  1. 5.0.x advagg_js_minify/jsminplus.inc \JSCompilerContext 1 comment
  2. 6.0.x advagg_js_minify/jsminplus.inc \JSCompilerContext 1 comment
  3. 7.x-2.x advagg_js_compress/jsminplus.inc \JSCompilerContext 1 comment
  4. 8.x-2.x advagg_js_minify/jsminplus.inc \JSCompilerContext 1 comment
  5. 8.x-3.x advagg_js_minify/jsminplus.inc \JSCompilerContext 1 comment
  6. 8.x-4.x advagg_js_minify/jsminplus.inc \JSCompilerContext 1 comment

Hierarchy

Expanded class hierarchy of JSCompilerContext

File

advagg_js_compress/jsminplus.inc, line 1763

View source
class JSCompilerContext {
    public $inFunction = false;
    public $inForLoopInit = false;
    public $ecmaStrictMode = false;
    public $bracketLevel = 0;
    public $curlyLevel = 0;
    public $parenLevel = 0;
    public $hookLevel = 0;
    public $stmtStack = array();
    public $funDecls = array();
    public $varDecls = array();
    public function __construct($inFunction) {
        $this->inFunction = $inFunction;
    }

}

Members