Your IP : 18.220.124.177


Current Path : /home/sudancam/.trash/shop.1/system/storage/vendor/scssphp/scssphp/src/Compiler/
Upload File :
Current File : /home/sudancam/.trash/shop.1/system/storage/vendor/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>
 */
class Environment
{
    /**
     * @var \ScssPhp\ScssPhp\Block
     */
    public $block;

    /**
     * @var \ScssPhp\ScssPhp\Compiler\Environment
     */
    public $parent;

    /**
     * @var array
     */
    public $store;

    /**
     * @var array
     */
    public $storeUnreduced;

    /**
     * @var integer
     */
    public $depth;
}