summaryrefslogtreecommitdiffstats
path: root/library/vendor/lessphp/lib/Less/Tree/Paren.php
blob: 77ee48cf847179a6b7e69b0e39a447bab9bc5e4d (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 ) );
	}

}