3 namespace Sabberworm\CSS\Value;
5 class CalcRuleValueList extends RuleValueList {
6 public function __construct($iLineNo = 0) {
7 parent::__construct(array(), ',', $iLineNo);
10 public function render(\Sabberworm\CSS\OutputFormat $oOutputFormat) {
11 return $oOutputFormat->implode(' ', $this->aComponents);