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.
30 lines
419 B
30 lines
419 B
2 years ago
|
<?php
|
||
|
|
||
|
/**
|
||
|
* UnicodeDescriptor
|
||
|
*
|
||
|
* @package Less
|
||
|
* @subpackage tree
|
||
|
*/
|
||
|
class Less_Tree_UnicodeDescriptor extends Less_Tree{
|
||
|
|
||
|
public $value;
|
||
|
public $type = 'UnicodeDescriptor';
|
||
|
|
||
|
public function __construct($value){
|
||
|
$this->value = $value;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @see Less_Tree::genCSS
|
||
|
*/
|
||
|
public function genCSS( $output ){
|
||
|
$output->add( $this->value );
|
||
|
}
|
||
|
|
||
|
public function compile(){
|
||
|
return $this;
|
||
|
}
|
||
|
}
|
||
|
|