public function JSNode::__construct in Advanced CSS/JS Aggregation 7.2
Same name and namespace in other branches
- 8.4 advagg_js_minify/jsminplus.inc \JSNode::__construct()
- 8.2 advagg_js_minify/jsminplus.inc \JSNode::__construct()
- 8.3 advagg_js_minify/jsminplus.inc \JSNode::__construct()
- 6 advagg_js_compress/jsminplus.inc \JSNode::__construct()
- 7 advagg_js_compress/jsminplus.inc \JSNode::__construct()
File
- advagg_js_compress/
jsminplus.inc, line 1808 - JSMinPlus version 1.4
Class
Code
public function __construct($t, $type = 0) {
$args = func_get_args();
if ($token = $t
->currentToken()) {
$this->type = $type ? $type : $token->type;
$this->value = $token->value;
$this->lineno = $token->lineno;
$this->start = $token->start;
$this->end = $token->end;
}
else {
$this->type = $type;
$this->lineno = $t->lineno;
}
if (($numargs = func_num_args()) > 2) {
for ($i = 2; $i < $numargs; $i++) {
$this
->addNode($args[$i]);
}
}
}