Hierarchy
- class \JSCompilerContext
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
| Title Sort descending | Modifiers | Object type | Summary |
|---|---|---|---|
| JSCompilerContext::$bracketLevel | public | property | |
| JSCompilerContext::$curlyLevel | public | property | |
| JSCompilerContext::$ecmaStrictMode | public | property | |
| JSCompilerContext::$funDecls | public | property | |
| JSCompilerContext::$hookLevel | public | property | |
| JSCompilerContext::$inForLoopInit | public | property | |
| JSCompilerContext::$inFunction | public | property | |
| JSCompilerContext::$parenLevel | public | property | |
| JSCompilerContext::$stmtStack | public | property | |
| JSCompilerContext::$varDecls | public | property | |
| JSCompilerContext::__construct | public | function |