blob: 01864550a6e83d01c04b3573d40c4bf2f8333203 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
 | <?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));
	}
}
 |