repo.or.cz
/
moodle.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge branch 'MDL-76525-MOODLE_400_STABLE' of https://github.com/PhMemmel/moodle...
[moodle.git]
/
lib
/
scssphp
/
Node.php
blob
fcaf8a95f3f396a16f16e4d6156e7d54a9f21a5b
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
}