Merge branch 'MDL-58454-master' of git://github.com/junpataleta/moodle
[moodle.git] / lib / scssphp / Block.php
bloba6ef8e034f3a5aa1e8e85d0a1bb6eec7cb845b26
1 <?php
2 /**
3 * SCSSPHP
5 * @copyright 2012-2018 Leaf Corcoran
7 * @license http://opensource.org/licenses/MIT MIT
9 * @link http://leafo.github.io/scssphp
12 namespace Leafo\ScssPhp;
14 /**
15 * Block
17 * @author Anthon Pang <anthon.pang@gmail.com>
19 class Block
21 /**
22 * @var string
24 public $type;
26 /**
27 * @var \Leafo\ScssPhp\Block
29 public $parent;
31 /**
32 * @var string
34 public $sourceName;
36 /**
37 * @var integer
39 public $sourceIndex;
41 /**
42 * @var integer
44 public $sourceLine;
46 /**
47 * @var integer
49 public $sourceColumn;
51 /**
52 * @var array
54 public $selectors;
56 /**
57 * @var array
59 public $comments;
61 /**
62 * @var array
64 public $children;