Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/3rdparty.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'scssphp/scssphp/src/Node.php')
-rw-r--r--scssphp/scssphp/src/Node.php43
1 files changed, 43 insertions, 0 deletions
diff --git a/scssphp/scssphp/src/Node.php b/scssphp/scssphp/src/Node.php
new file mode 100644
index 00000000..53019375
--- /dev/null
+++ b/scssphp/scssphp/src/Node.php
@@ -0,0 +1,43 @@
+<?php
+
+/**
+ * SCSSPHP
+ *
+ * @copyright 2012-2020 Leaf Corcoran
+ *
+ * @license http://opensource.org/licenses/MIT MIT
+ *
+ * @link http://scssphp.github.io/scssphp
+ */
+
+namespace ScssPhp\ScssPhp;
+
+/**
+ * Base node
+ *
+ * @author Anthon Pang <anthon.pang@gmail.com>
+ *
+ * @internal
+ */
+abstract class Node
+{
+ /**
+ * @var string
+ */
+ public $type;
+
+ /**
+ * @var integer
+ */
+ public $sourceIndex;
+
+ /**
+ * @var int|null
+ */
+ public $sourceLine;
+
+ /**
+ * @var int|null
+ */
+ public $sourceColumn;
+}