@@ 4735-4740 (lines=6) @@ | ||
4732 | protected $currentFileInfo; |
|
4733 | public $type = 'Call'; |
|
4734 | ||
4735 | public function __construct($name, $args, $index, $currentFileInfo = null ){ |
|
4736 | $this->name = $name; |
|
4737 | $this->args = $args; |
|
4738 | $this->index = $index; |
|
4739 | $this->currentFileInfo = $currentFileInfo; |
|
4740 | } |
|
4741 | ||
4742 | public function accept( $visitor ){ |
|
4743 | $this->args = $visitor->visitArray( $this->args ); |
|
@@ 6393-6398 (lines=6) @@ | ||
6390 | public $currentFileInfo; |
|
6391 | public $type = 'NameValue'; |
|
6392 | ||
6393 | public function __construct($name, $value = null, $index = null, $currentFileInfo = null ){ |
|
6394 | $this->name = $name; |
|
6395 | $this->value = $value; |
|
6396 | $this->index = $index; |
|
6397 | $this->currentFileInfo = $currentFileInfo; |
|
6398 | } |
|
6399 | ||
6400 | public function genCSS( $output ){ |
|
6401 |