MDL-70301 lib: Upgrade scssphp to 1.4.1
[moodle.git] / lib / scssphp / Compiler / Environment.php
blobdc2f86c1fbe0f64ace33be1183e555b0e3ec3845
1 <?php
3 /**
4 * SCSSPHP
6 * @copyright 2012-2020 Leaf Corcoran
8 * @license http://opensource.org/licenses/MIT MIT
10 * @link http://scssphp.github.io/scssphp
13 namespace ScssPhp\ScssPhp\Compiler;
15 /**
16 * Compiler environment
18 * @author Anthon Pang <anthon.pang@gmail.com>
20 class Environment
22 /**
23 * @var \ScssPhp\ScssPhp\Block
25 public $block;
27 /**
28 * @var \ScssPhp\ScssPhp\Compiler\Environment
30 public $parent;
32 /**
33 * @var array
35 public $store;
37 /**
38 * @var array
40 public $storeUnreduced;
42 /**
43 * @var integer
45 public $depth;