Merge branch 'MDL-76525-MOODLE_400_STABLE' of https://github.com/PhMemmel/moodle...
[moodle.git] / lib / scssphp / Node.php
blobfcaf8a95f3f396a16f16e4d6156e7d54a9f21a5b
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;
15 /**
16 * Base node
18 * @author Anthon Pang <anthon.pang@gmail.com>
20 * @internal
22 abstract class Node
24 /**
25 * @var string
27 public $type;
29 /**
30 * @var int
32 public $sourceIndex;
34 /**
35 * @var int|null
37 public $sourceLine;
39 /**
40 * @var int|null
42 public $sourceColumn;