1<===> options.yml
2---
3:warning_todo:
4- sass/libsass#2887
5
6<===> input.scss
7.result {
8  output: (0deg + 1deg);
9  output: (4.2deg / 1deg);
10  output: (4.2deg * 1deg / 1deg);
11  output: (0deg + 1grad);
12  output: (4.2deg / 1grad);
13  output: (4.2deg * 1grad / 1deg);
14  output: (0deg + 1rad);
15  output: (4.2deg / 1rad);
16  output: (4.2deg * 1rad / 1deg);
17  output: (0deg + 1turn);
18  output: (4.2deg / 1turn);
19  output: (4.2deg * 1turn / 1deg);
20  output: (0grad + 1deg);
21  output: (4.2grad / 1deg);
22  output: (4.2grad * 1deg / 1grad);
23  output: (0grad + 1grad);
24  output: (4.2grad / 1grad);
25  output: (4.2grad * 1grad / 1grad);
26  output: (0grad + 1rad);
27  output: (4.2grad / 1rad);
28  output: (4.2grad * 1rad / 1grad);
29  output: (0grad + 1turn);
30  output: (4.2grad / 1turn);
31  output: (4.2grad * 1turn / 1grad);
32  output: (0rad + 1deg);
33  output: (4.2rad / 1deg);
34  output: (4.2rad * 1deg / 1rad);
35  output: (0rad + 1grad);
36  output: (4.2rad / 1grad);
37  output: (4.2rad * 1grad / 1rad);
38  output: (0rad + 1rad);
39  output: (4.2rad / 1rad);
40  output: (4.2rad * 1rad / 1rad);
41  output: (0rad + 1turn);
42  output: (4.2rad / 1turn);
43  output: (4.2rad * 1turn / 1rad);
44  output: (0turn + 1deg);
45  output: (4.2turn / 1deg);
46  output: (4.2turn * 1deg / 1turn);
47  output: (0turn + 1grad);
48  output: (4.2turn / 1grad);
49  output: (4.2turn * 1grad / 1turn);
50  output: (0turn + 1rad);
51  output: (4.2turn / 1rad);
52  output: (4.2turn * 1rad / 1turn);
53  output: (0turn + 1turn);
54  output: (4.2turn / 1turn);
55  output: (4.2turn * 1turn / 1turn);
56}
57
58<===> output.css
59.result {
60  output: 1deg;
61  output: 4.2;
62  output: 4.2deg;
63  output: 0.9deg;
64  output: 4.6666666667;
65  output: 4.2grad;
66  output: 57.2957795131deg;
67  output: 0.0733038286;
68  output: 4.2rad;
69  output: 360deg;
70  output: 0.0116666667;
71  output: 4.2turn;
72  output: 1.1111111111grad;
73  output: 3.78;
74  output: 4.2deg;
75  output: 1grad;
76  output: 4.2;
77  output: 4.2grad;
78  output: 63.6619772368grad;
79  output: 0.0659734457;
80  output: 4.2rad;
81  output: 400grad;
82  output: 0.0105;
83  output: 4.2turn;
84  output: 0.0174532925rad;
85  output: 240.6422739549;
86  output: 4.2deg;
87  output: 0.0157079633rad;
88  output: 267.3803043944;
89  output: 4.2grad;
90  output: 1rad;
91  output: 4.2;
92  output: 4.2rad;
93  output: 6.2831853072rad;
94  output: 0.668450761;
95  output: 4.2turn;
96  output: 0.0027777778turn;
97  output: 1512;
98  output: 4.2deg;
99  output: 0.0025turn;
100  output: 1680;
101  output: 4.2grad;
102  output: 0.1591549431turn;
103  output: 26.3893782902;
104  output: 4.2rad;
105  output: 1turn;
106  output: 4.2;
107  output: 4.2turn;
108}
109
110<===> warning
111DEPRECATION WARNING: Using / for division is deprecated and will be removed in Dart Sass 2.0.0.
112
113Recommendation: math.div(4.2deg, 1deg)
114
115More info and automated migrator: https://sass-lang.com/d/slash-div
116
117  ,
1183 |   output: (4.2deg / 1deg);
119  |            ^^^^^^^^^^^^^
120  '
121    input.scss 3:12  root stylesheet
122
123DEPRECATION WARNING: Using / for division is deprecated and will be removed in Dart Sass 2.0.0.
124
125Recommendation: math.div(4.2deg * 1deg, 1deg)
126
127More info and automated migrator: https://sass-lang.com/d/slash-div
128
129  ,
1304 |   output: (4.2deg * 1deg / 1deg);
131  |            ^^^^^^^^^^^^^^^^^^^^
132  '
133    input.scss 4:12  root stylesheet
134
135DEPRECATION WARNING: Using / for division is deprecated and will be removed in Dart Sass 2.0.0.
136
137Recommendation: math.div(4.2deg, 1grad)
138
139More info and automated migrator: https://sass-lang.com/d/slash-div
140
141  ,
1426 |   output: (4.2deg / 1grad);
143  |            ^^^^^^^^^^^^^^
144  '
145    input.scss 6:12  root stylesheet
146
147DEPRECATION WARNING: Using / for division is deprecated and will be removed in Dart Sass 2.0.0.
148
149Recommendation: math.div(4.2deg * 1grad, 1deg)
150
151More info and automated migrator: https://sass-lang.com/d/slash-div
152
153  ,
1547 |   output: (4.2deg * 1grad / 1deg);
155  |            ^^^^^^^^^^^^^^^^^^^^^
156  '
157    input.scss 7:12  root stylesheet
158
159DEPRECATION WARNING: Using / for division is deprecated and will be removed in Dart Sass 2.0.0.
160
161Recommendation: math.div(4.2deg, 1rad)
162
163More info and automated migrator: https://sass-lang.com/d/slash-div
164
165  ,
1669 |   output: (4.2deg / 1rad);
167  |            ^^^^^^^^^^^^^
168  '
169    input.scss 9:12  root stylesheet
170
171DEPRECATION WARNING: Using / for division is deprecated and will be removed in Dart Sass 2.0.0.
172
173Recommendation: math.div(4.2deg * 1rad, 1deg)
174
175More info and automated migrator: https://sass-lang.com/d/slash-div
176
177   ,
17810 |   output: (4.2deg * 1rad / 1deg);
179   |            ^^^^^^^^^^^^^^^^^^^^
180   '
181    input.scss 10:12  root stylesheet
182
183DEPRECATION WARNING: Using / for division is deprecated and will be removed in Dart Sass 2.0.0.
184
185Recommendation: math.div(4.2deg, 1turn)
186
187More info and automated migrator: https://sass-lang.com/d/slash-div
188
189   ,
19012 |   output: (4.2deg / 1turn);
191   |            ^^^^^^^^^^^^^^
192   '
193    input.scss 12:12  root stylesheet
194
195DEPRECATION WARNING: Using / for division is deprecated and will be removed in Dart Sass 2.0.0.
196
197Recommendation: math.div(4.2deg * 1turn, 1deg)
198
199More info and automated migrator: https://sass-lang.com/d/slash-div
200
201   ,
20213 |   output: (4.2deg * 1turn / 1deg);
203   |            ^^^^^^^^^^^^^^^^^^^^^
204   '
205    input.scss 13:12  root stylesheet
206
207DEPRECATION WARNING: Using / for division is deprecated and will be removed in Dart Sass 2.0.0.
208
209Recommendation: math.div(4.2grad, 1deg)
210
211More info and automated migrator: https://sass-lang.com/d/slash-div
212
213   ,
21415 |   output: (4.2grad / 1deg);
215   |            ^^^^^^^^^^^^^^
216   '
217    input.scss 15:12  root stylesheet
218
219DEPRECATION WARNING: Using / for division is deprecated and will be removed in Dart Sass 2.0.0.
220
221Recommendation: math.div(4.2grad * 1deg, 1grad)
222
223More info and automated migrator: https://sass-lang.com/d/slash-div
224
225   ,
22616 |   output: (4.2grad * 1deg / 1grad);
227   |            ^^^^^^^^^^^^^^^^^^^^^^
228   '
229    input.scss 16:12  root stylesheet
230
231DEPRECATION WARNING: Using / for division is deprecated and will be removed in Dart Sass 2.0.0.
232
233Recommendation: math.div(4.2grad, 1grad)
234
235More info and automated migrator: https://sass-lang.com/d/slash-div
236
237   ,
23818 |   output: (4.2grad / 1grad);
239   |            ^^^^^^^^^^^^^^^
240   '
241    input.scss 18:12  root stylesheet
242
243DEPRECATION WARNING: Using / for division is deprecated and will be removed in Dart Sass 2.0.0.
244
245Recommendation: math.div(4.2grad * 1grad, 1grad)
246
247More info and automated migrator: https://sass-lang.com/d/slash-div
248
249   ,
25019 |   output: (4.2grad * 1grad / 1grad);
251   |            ^^^^^^^^^^^^^^^^^^^^^^^
252   '
253    input.scss 19:12  root stylesheet
254
255DEPRECATION WARNING: Using / for division is deprecated and will be removed in Dart Sass 2.0.0.
256
257Recommendation: math.div(4.2grad, 1rad)
258
259More info and automated migrator: https://sass-lang.com/d/slash-div
260
261   ,
26221 |   output: (4.2grad / 1rad);
263   |            ^^^^^^^^^^^^^^
264   '
265    input.scss 21:12  root stylesheet
266
267DEPRECATION WARNING: Using / for division is deprecated and will be removed in Dart Sass 2.0.0.
268
269Recommendation: math.div(4.2grad * 1rad, 1grad)
270
271More info and automated migrator: https://sass-lang.com/d/slash-div
272
273   ,
27422 |   output: (4.2grad * 1rad / 1grad);
275   |            ^^^^^^^^^^^^^^^^^^^^^^
276   '
277    input.scss 22:12  root stylesheet
278
279DEPRECATION WARNING: Using / for division is deprecated and will be removed in Dart Sass 2.0.0.
280
281Recommendation: math.div(4.2grad, 1turn)
282
283More info and automated migrator: https://sass-lang.com/d/slash-div
284
285   ,
28624 |   output: (4.2grad / 1turn);
287   |            ^^^^^^^^^^^^^^^
288   '
289    input.scss 24:12  root stylesheet
290
291DEPRECATION WARNING: Using / for division is deprecated and will be removed in Dart Sass 2.0.0.
292
293Recommendation: math.div(4.2grad * 1turn, 1grad)
294
295More info and automated migrator: https://sass-lang.com/d/slash-div
296
297   ,
29825 |   output: (4.2grad * 1turn / 1grad);
299   |            ^^^^^^^^^^^^^^^^^^^^^^^
300   '
301    input.scss 25:12  root stylesheet
302
303DEPRECATION WARNING: Using / for division is deprecated and will be removed in Dart Sass 2.0.0.
304
305Recommendation: math.div(4.2rad, 1deg)
306
307More info and automated migrator: https://sass-lang.com/d/slash-div
308
309   ,
31027 |   output: (4.2rad / 1deg);
311   |            ^^^^^^^^^^^^^
312   '
313    input.scss 27:12  root stylesheet
314
315DEPRECATION WARNING: Using / for division is deprecated and will be removed in Dart Sass 2.0.0.
316
317Recommendation: math.div(4.2rad * 1deg, 1rad)
318
319More info and automated migrator: https://sass-lang.com/d/slash-div
320
321   ,
32228 |   output: (4.2rad * 1deg / 1rad);
323   |            ^^^^^^^^^^^^^^^^^^^^
324   '
325    input.scss 28:12  root stylesheet
326
327DEPRECATION WARNING: Using / for division is deprecated and will be removed in Dart Sass 2.0.0.
328
329Recommendation: math.div(4.2rad, 1grad)
330
331More info and automated migrator: https://sass-lang.com/d/slash-div
332
333   ,
33430 |   output: (4.2rad / 1grad);
335   |            ^^^^^^^^^^^^^^
336   '
337    input.scss 30:12  root stylesheet
338
339DEPRECATION WARNING: Using / for division is deprecated and will be removed in Dart Sass 2.0.0.
340
341Recommendation: math.div(4.2rad * 1grad, 1rad)
342
343More info and automated migrator: https://sass-lang.com/d/slash-div
344
345   ,
34631 |   output: (4.2rad * 1grad / 1rad);
347   |            ^^^^^^^^^^^^^^^^^^^^^
348   '
349    input.scss 31:12  root stylesheet
350
351DEPRECATION WARNING: Using / for division is deprecated and will be removed in Dart Sass 2.0.0.
352
353Recommendation: math.div(4.2rad, 1rad)
354
355More info and automated migrator: https://sass-lang.com/d/slash-div
356
357   ,
35833 |   output: (4.2rad / 1rad);
359   |            ^^^^^^^^^^^^^
360   '
361    input.scss 33:12  root stylesheet
362
363DEPRECATION WARNING: Using / for division is deprecated and will be removed in Dart Sass 2.0.0.
364
365Recommendation: math.div(4.2rad * 1rad, 1rad)
366
367More info and automated migrator: https://sass-lang.com/d/slash-div
368
369   ,
37034 |   output: (4.2rad * 1rad / 1rad);
371   |            ^^^^^^^^^^^^^^^^^^^^
372   '
373    input.scss 34:12  root stylesheet
374
375DEPRECATION WARNING: Using / for division is deprecated and will be removed in Dart Sass 2.0.0.
376
377Recommendation: math.div(4.2rad, 1turn)
378
379More info and automated migrator: https://sass-lang.com/d/slash-div
380
381   ,
38236 |   output: (4.2rad / 1turn);
383   |            ^^^^^^^^^^^^^^
384   '
385    input.scss 36:12  root stylesheet
386
387DEPRECATION WARNING: Using / for division is deprecated and will be removed in Dart Sass 2.0.0.
388
389Recommendation: math.div(4.2rad * 1turn, 1rad)
390
391More info and automated migrator: https://sass-lang.com/d/slash-div
392
393   ,
39437 |   output: (4.2rad * 1turn / 1rad);
395   |            ^^^^^^^^^^^^^^^^^^^^^
396   '
397    input.scss 37:12  root stylesheet
398
399DEPRECATION WARNING: Using / for division is deprecated and will be removed in Dart Sass 2.0.0.
400
401Recommendation: math.div(4.2turn, 1deg)
402
403More info and automated migrator: https://sass-lang.com/d/slash-div
404
405   ,
40639 |   output: (4.2turn / 1deg);
407   |            ^^^^^^^^^^^^^^
408   '
409    input.scss 39:12  root stylesheet
410
411DEPRECATION WARNING: Using / for division is deprecated and will be removed in Dart Sass 2.0.0.
412
413Recommendation: math.div(4.2turn * 1deg, 1turn)
414
415More info and automated migrator: https://sass-lang.com/d/slash-div
416
417   ,
41840 |   output: (4.2turn * 1deg / 1turn);
419   |            ^^^^^^^^^^^^^^^^^^^^^^
420   '
421    input.scss 40:12  root stylesheet
422
423DEPRECATION WARNING: Using / for division is deprecated and will be removed in Dart Sass 2.0.0.
424
425Recommendation: math.div(4.2turn, 1grad)
426
427More info and automated migrator: https://sass-lang.com/d/slash-div
428
429   ,
43042 |   output: (4.2turn / 1grad);
431   |            ^^^^^^^^^^^^^^^
432   '
433    input.scss 42:12  root stylesheet
434
435DEPRECATION WARNING: Using / for division is deprecated and will be removed in Dart Sass 2.0.0.
436
437Recommendation: math.div(4.2turn * 1grad, 1turn)
438
439More info and automated migrator: https://sass-lang.com/d/slash-div
440
441   ,
44243 |   output: (4.2turn * 1grad / 1turn);
443   |            ^^^^^^^^^^^^^^^^^^^^^^^
444   '
445    input.scss 43:12  root stylesheet
446
447DEPRECATION WARNING: Using / for division is deprecated and will be removed in Dart Sass 2.0.0.
448
449Recommendation: math.div(4.2turn, 1rad)
450
451More info and automated migrator: https://sass-lang.com/d/slash-div
452
453   ,
45445 |   output: (4.2turn / 1rad);
455   |            ^^^^^^^^^^^^^^
456   '
457    input.scss 45:12  root stylesheet
458
459DEPRECATION WARNING: Using / for division is deprecated and will be removed in Dart Sass 2.0.0.
460
461Recommendation: math.div(4.2turn * 1rad, 1turn)
462
463More info and automated migrator: https://sass-lang.com/d/slash-div
464
465   ,
46646 |   output: (4.2turn * 1rad / 1turn);
467   |            ^^^^^^^^^^^^^^^^^^^^^^
468   '
469    input.scss 46:12  root stylesheet
470
471DEPRECATION WARNING: Using / for division is deprecated and will be removed in Dart Sass 2.0.0.
472
473Recommendation: math.div(4.2turn, 1turn)
474
475More info and automated migrator: https://sass-lang.com/d/slash-div
476
477   ,
47848 |   output: (4.2turn / 1turn);
479   |            ^^^^^^^^^^^^^^^
480   '
481    input.scss 48:12  root stylesheet
482
483DEPRECATION WARNING: Using / for division is deprecated and will be removed in Dart Sass 2.0.0.
484
485Recommendation: math.div(4.2turn * 1turn, 1turn)
486
487More info and automated migrator: https://sass-lang.com/d/slash-div
488
489   ,
49049 |   output: (4.2turn * 1turn / 1turn);
491   |            ^^^^^^^^^^^^^^^^^^^^^^^
492   '
493    input.scss 49:12  root stylesheet
494
495