Code Duplication    Length = 6-6 lines in 2 locations

Contrib/less.php/Less.php 2 locations

@@ 4727-4732 (lines=6) @@
4724
    protected $currentFileInfo;
4725
    public $type = 'Call';
4726
4727
	public function __construct($name, $args, $index, $currentFileInfo = null ){
4728
		$this->name = $name;
4729
		$this->args = $args;
4730
		$this->index = $index;
4731
		$this->currentFileInfo = $currentFileInfo;
4732
	}
4733
4734
    public function accept( $visitor ){
4735
		$this->args = $visitor->visitArray( $this->args );
@@ 6385-6390 (lines=6) @@
6382
	public $currentFileInfo;
6383
	public $type = 'NameValue';
6384
6385
	public function __construct($name, $value = null, $index = null, $currentFileInfo = null ){
6386
		$this->name = $name;
6387
		$this->value = $value;
6388
		$this->index = $index;
6389
		$this->currentFileInfo = $currentFileInfo;
6390
	}
6391
6392
    public function genCSS( $output ){
6393