ORIENT/vendor/wikimedia/less.php/lib/Less/Tree/Comment.php

44 lines
1.2 KiB
PHP
Raw Normal View History

2021-04-08 08:08:59 +00:00
<?php
/**
2023-02-27 04:39:19 +00:00
* @private
2021-04-08 08:08:59 +00:00
*/
2023-02-27 04:39:19 +00:00
class Less_Tree_Comment extends Less_Tree {
2021-04-08 08:08:59 +00:00
public $value;
public $silent;
public $isReferenced;
public $currentFileInfo;
public $type = 'Comment';
2023-02-27 04:39:19 +00:00
public function __construct( $value, $silent, $index = null, $currentFileInfo = null ) {
2021-04-08 08:08:59 +00:00
$this->value = $value;
2023-02-27 04:39:19 +00:00
$this->silent = (bool)$silent;
2021-04-08 08:08:59 +00:00
$this->currentFileInfo = $currentFileInfo;
}
2023-02-27 04:39:19 +00:00
/**
* @see Less_Tree::genCSS
*/
public function genCSS( $output ) {
// if( $this->debugInfo ){
2021-04-08 08:08:59 +00:00
//$output->add( tree.debugInfo($env, $this), $this->currentFileInfo, $this->index);
//}
2023-02-27 04:39:19 +00:00
$output->add( trim( $this->value ) );// TODO shouldn't need to trim, we shouldn't grab the \n
2021-04-08 08:08:59 +00:00
}
2023-02-27 04:39:19 +00:00
public function toCSS() {
2021-04-08 08:08:59 +00:00
return Less_Parser::$options['compress'] ? '' : $this->value;
}
2023-02-27 04:39:19 +00:00
public function isSilent() {
$isReference = ( $this->currentFileInfo && isset( $this->currentFileInfo['reference'] ) && ( !isset( $this->isReferenced ) || !$this->isReferenced ) );
$isCompressed = Less_Parser::$options['compress'] && !preg_match( '/^\/\*!/', $this->value );
2021-04-08 08:08:59 +00:00
return $this->silent || $isReference || $isCompressed;
}
2023-02-27 04:39:19 +00:00
public function markReferenced() {
2021-04-08 08:08:59 +00:00
$this->isReferenced = true;
}
}