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/Formatter/OutputBlock.php')
-rw-r--r--scssphp/scssphp/src/Formatter/OutputBlock.php68
1 files changed, 68 insertions, 0 deletions
diff --git a/scssphp/scssphp/src/Formatter/OutputBlock.php b/scssphp/scssphp/src/Formatter/OutputBlock.php
new file mode 100644
index 00000000..88deb2d3
--- /dev/null
+++ b/scssphp/scssphp/src/Formatter/OutputBlock.php
@@ -0,0 +1,68 @@
+<?php
+
+/**
+ * SCSSPHP
+ *
+ * @copyright 2012-2020 Leaf Corcoran
+ *
+ * @license http://opensource.org/licenses/MIT MIT
+ *
+ * @link http://scssphp.github.io/scssphp
+ */
+
+namespace ScssPhp\ScssPhp\Formatter;
+
+/**
+ * Output block
+ *
+ * @author Anthon Pang <anthon.pang@gmail.com>
+ *
+ * @internal
+ */
+class OutputBlock
+{
+ /**
+ * @var string
+ */
+ public $type;
+
+ /**
+ * @var integer
+ */
+ public $depth;
+
+ /**
+ * @var array|null
+ */
+ public $selectors;
+
+ /**
+ * @var string[]
+ */
+ public $lines;
+
+ /**
+ * @var OutputBlock[]
+ */
+ public $children;
+
+ /**
+ * @var OutputBlock|null
+ */
+ public $parent;
+
+ /**
+ * @var string|null
+ */
+ public $sourceName;
+
+ /**
+ * @var integer|null
+ */
+ public $sourceLine;
+
+ /**
+ * @var integer|null
+ */
+ public $sourceColumn;
+}