%PDF- %PDF-
Direktori : /www/old2/_muzikoterapie/uloziste.eacm.cz/3rdparty/scssphp/scssphp/src/Compiler/ |
Current File : /www/old2/_muzikoterapie/uloziste.eacm.cz/3rdparty/scssphp/scssphp/src/Compiler/Environment.php |
<?php /** * SCSSPHP * * @copyright 2012-2020 Leaf Corcoran * * @license http://opensource.org/licenses/MIT MIT * * @link http://scssphp.github.io/scssphp */ namespace ScssPhp\ScssPhp\Compiler; /** * Compiler environment * * @author Anthon Pang <anthon.pang@gmail.com> * * @internal */ class Environment { /** * @var \ScssPhp\ScssPhp\Block|null */ public $block; /** * @var \ScssPhp\ScssPhp\Compiler\Environment|null */ public $parent; /** * @var array */ public $store; /** * @var array */ public $storeUnreduced; /** * @var integer */ public $depth; }