moodle/lib/scssphp/Compiler/Environment.php

46 lines
637 B
PHP
Raw Normal View History

<?php
/**
* SCSSPHP
*
2019-06-28 09:42:24 +08:00
* @copyright 2012-2019 Leaf Corcoran
*
* @license http://opensource.org/licenses/MIT MIT
*
2019-06-28 09:42:24 +08:00
* @link http://scssphp.github.io/scssphp
*/
2019-06-28 09:42:24 +08:00
namespace ScssPhp\ScssPhp\Compiler;
/**
* Compiler environment
*
* @author Anthon Pang <anthon.pang@gmail.com>
*/
class Environment
{
/**
2019-06-28 09:42:24 +08:00
* @var \ScssPhp\ScssPhp\Block
*/
public $block;
/**
2019-06-28 09:42:24 +08:00
* @var \ScssPhp\ScssPhp\Compiler\Environment
*/
public $parent;
/**
* @var array
*/
public $store;
2019-06-11 11:53:29 +08:00
/**
* @var array
*/
public $storeUnreduced;
/**
* @var integer
*/
public $depth;
}