@@ -174,5 +174,93 @@ $day: "monday";
174
174
expect (fourth.range, StartsAtCharacter (14 ));
175
175
expect (fourth.range, EndsAtCharacter (18 ));
176
176
});
177
+
178
+ test ('finds variables in maps' , () async {
179
+ // TODO
180
+ });
181
+ });
182
+
183
+ group ('CSS variables' , () {
184
+ setUp (() {
185
+ ls.cache.clear ();
186
+ });
187
+
188
+ test ('finds references in the same document' , () async {
189
+ // TODO
190
+ });
191
+
192
+ test ('finds references across workspace' , () async {
193
+ // TODO
194
+ });
195
+ });
196
+
197
+ group ('sass functions' , () {
198
+ setUp (() {
199
+ ls.cache.clear ();
200
+ });
201
+
202
+ test ('finds references in the same document' , () async {
203
+ // TODO
204
+ });
205
+
206
+ test ('finds references across workspace' , () async {
207
+ // TODO
208
+ });
209
+
210
+ test ('finds references in visibility modifier' , () async {
211
+ // TODO
212
+ });
213
+
214
+ test ('finds references in visibility map' , () async {
215
+ // TODO
216
+ });
217
+ });
218
+
219
+ group ('sass mixins' , () {
220
+ setUp (() {
221
+ ls.cache.clear ();
222
+ });
223
+
224
+ test ('finds references in the same document' , () async {
225
+ // TODO
226
+ });
227
+
228
+ test ('finds references across workspace' , () async {
229
+ // TODO
230
+ });
231
+
232
+ test ('finds references in visibility modifier' , () async {
233
+ // TODO
234
+ });
235
+ });
236
+
237
+ group ('sass mixins' , () {
238
+ setUp (() {
239
+ ls.cache.clear ();
240
+ });
241
+
242
+ test ('finds placeholder selectors' , () async {
243
+ // TODO: test with declaration and @extend usage.
244
+ });
245
+ });
246
+
247
+ group ('placeholder selectors' , () {
248
+ setUp (() {
249
+ ls.cache.clear ();
250
+ });
251
+
252
+ test ('finds placeholder selectors' , () async {
253
+ // TODO: test with declaration and @extend usage.
254
+ });
255
+ });
256
+
257
+ group ('sass built-in modules' , () {
258
+ setUp (() {
259
+ ls.cache.clear ();
260
+ });
261
+
262
+ test ('finds sass built-in modules' , () async {
263
+ // TODO
264
+ });
177
265
});
178
266
}
0 commit comments