aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/scssphp/scssphp/src/Type.php
blob: d4308878580281d9be73c69ba9a2d2c749edd82b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
<?php

/**
 * SCSSPHP
 *
 * @copyright 2012-2020 Leaf Corcoran
 *
 * @license http://opensource.org/licenses/MIT MIT
 *
 * @link http://scssphp.github.io/scssphp
 */

namespace ScssPhp\ScssPhp;

/**
 * Block/node types
 *
 * @author Anthon Pang <anthon.pang@gmail.com>
 */
class Type
{
    /**
     * @internal
     */
    const T_ASSIGN = 'assign';
    /**
     * @internal
     */
    const T_AT_ROOT = 'at-root';
    /**
     * @internal
     */
    const T_BLOCK = 'block';
    /**
     * @deprecated
     * @internal
     */
    const T_BREAK = 'break';
    /**
     * @internal
     */
    const T_CHARSET = 'charset';
    const T_COLOR = 'color';
    /**
     * @internal
     */
    const T_COMMENT = 'comment';
    /**
     * @deprecated
     * @internal
     */
    const T_CONTINUE = 'continue';
    /**
     * @deprecated
     * @internal
     */
    const T_CONTROL = 'control';
    /**
     * @internal
     */
    const T_CUSTOM_PROPERTY = 'custom';
    /**
     * @internal
     */
    const T_DEBUG = 'debug';
    /**
     * @internal
     */
    const T_DIRECTIVE = 'directive';
    /**
     * @internal
     */
    const T_EACH = 'each';
    /**
     * @internal
     */
    const T_ELSE = 'else';
    /**
     * @internal
     */
    const T_ELSEIF = 'elseif';
    /**
     * @internal
     */
    const T_ERROR = 'error';
    /**
     * @internal
     */
    const T_EXPRESSION = 'exp';
    /**
     * @internal
     */
    const T_EXTEND = 'extend';
    /**
     * @internal
     */
    const T_FOR = 'for';
    const T_FUNCTION = 'function';
    /**
     * @internal
     */
    const T_FUNCTION_REFERENCE = 'function-reference';
    /**
     * @internal
     */
    const T_FUNCTION_CALL = 'fncall';
    /**
     * @internal
     */
    const T_HSL = 'hsl';
    /**
     * @internal
     */
    const T_HWB = 'hwb';
    /**
     * @internal
     */
    const T_IF = 'if';
    /**
     * @internal
     */
    const T_IMPORT = 'import';
    /**
     * @internal
     */
    const T_INCLUDE = 'include';
    /**
     * @internal
     */
    const T_INTERPOLATE = 'interpolate';
    /**
     * @internal
     */
    const T_INTERPOLATED = 'interpolated';
    /**
     * @internal
     */
    const T_KEYWORD = 'keyword';
    const T_LIST = 'list';
    const T_MAP = 'map';
    /**
     * @internal
     */
    const T_MEDIA = 'media';
    /**
     * @internal
     */
    const T_MEDIA_EXPRESSION = 'mediaExp';
    /**
     * @internal
     */
    const T_MEDIA_TYPE = 'mediaType';
    /**
     * @internal
     */
    const T_MEDIA_VALUE = 'mediaValue';
    /**
     * @internal
     */
    const T_MIXIN = 'mixin';
    /**
     * @internal
     */
    const T_MIXIN_CONTENT = 'mixin_content';
    /**
     * @internal
     */
    const T_NESTED_PROPERTY = 'nestedprop';
    /**
     * @internal
     */
    const T_NOT = 'not';
    const T_NULL = 'null';
    const T_NUMBER = 'number';
    /**
     * @internal
     */
    const T_RETURN = 'return';
    /**
     * @internal
     */
    const T_ROOT = 'root';
    /**
     * @internal
     */
    const T_SCSSPHP_IMPORT_ONCE = 'scssphp-import-once';
    /**
     * @internal
     */
    const T_SELF = 'self';
    const T_STRING = 'string';
    /**
     * @internal
     */
    const T_UNARY = 'unary';
    /**
     * @internal
     */
    const T_VARIABLE = 'var';
    /**
     * @internal
     */
    const T_WARN = 'warn';
    /**
     * @internal
     */
    const T_WHILE = 'while';
}