You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
577 B
36 lines
577 B
2 years ago
|
<?php
|
||
|
|
||
|
/**
|
||
|
* Paren
|
||
|
*
|
||
|
* @package Less
|
||
|
* @subpackage tree
|
||
|
*/
|
||
|
class Less_Tree_Paren extends Less_Tree{
|
||
|
|
||
|
public $value;
|
||
|
public $type = 'Paren';
|
||
|
|
||
|
public function __construct($value) {
|
||
|
$this->value = $value;
|
||
|
}
|
||
|
|
||
|
public function accept($visitor){
|
||
|
$this->value = $visitor->visitObj($this->value);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @see Less_Tree::genCSS
|
||
|
*/
|
||
|
public function genCSS( $output ){
|
||
|
$output->add( '(' );
|
||
|
$this->value->genCSS( $output );
|
||
|
$output->add( ')' );
|
||
|
}
|
||
|
|
||
|
public function compile($env) {
|
||
|
return new Less_Tree_Paren($this->value->compile($env));
|
||
|
}
|
||
|
|
||
|
}
|