Proyectos de Subversion Moodle

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 efrain 1
<?php
2
 
3
/**
4
 * SCSSPHP
5
 *
6
 * @copyright 2012-2020 Leaf Corcoran
7
 *
8
 * @license http://opensource.org/licenses/MIT MIT
9
 *
10
 * @link http://scssphp.github.io/scssphp
11
 */
12
 
13
namespace ScssPhp\ScssPhp;
14
 
15
/**
16
 * Base node
17
 *
18
 * @author Anthon Pang <anthon.pang@gmail.com>
19
 *
20
 * @internal
21
 */
22
abstract class Node
23
{
24
    /**
25
     * @var string
26
     */
27
    public $type;
28
 
29
    /**
30
     * @var int
31
     */
32
    public $sourceIndex;
33
 
34
    /**
35
     * @var int|null
36
     */
37
    public $sourceLine;
38
 
39
    /**
40
     * @var int|null
41
     */
42
    public $sourceColumn;
43
}