2022-01-18 10:35:47 -05:00
|
|
|
<?php
|
2026-03-26 12:46:27 -04:00
|
|
|
|
|
|
|
|
// SPDX-FileCopyrightText: 2022 Icinga GmbH <https://icinga.com>
|
|
|
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
2022-01-18 10:35:47 -05:00
|
|
|
|
|
|
|
|
namespace Icinga\Less;
|
|
|
|
|
|
|
|
|
|
use Less_VisitorReplacing;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Ensure that light mode calls have access to the environment in which the mode was defined
|
|
|
|
|
*/
|
|
|
|
|
class LightModeVisitor extends Less_VisitorReplacing
|
|
|
|
|
{
|
|
|
|
|
use LightModeTrait;
|
|
|
|
|
|
|
|
|
|
public $isPreVisitor = true;
|
|
|
|
|
|
|
|
|
|
public function visitRulesetCall($c)
|
|
|
|
|
{
|
2022-02-08 13:59:26 -05:00
|
|
|
return LightModeCall::fromRulesetCall($c)->setLightMode($this->getLightMode());
|
2022-01-18 10:35:47 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function run($node)
|
|
|
|
|
{
|
|
|
|
|
return $this->visitObj($node);
|
|
|
|
|
}
|
|
|
|
|
}
|