1<===> slash/with_string/slash_plus_string/options.yml
2---
3:warning_todo:
4- sass/libsass#2887
5
6<===> slash/with_string/slash_plus_string/input.scss
7a {b: 1 / 2 + foo()}
8
9<===> slash/with_string/slash_plus_string/output.css
10a {
11  b: 0.5foo();
12}
13
14<===> slash/with_string/slash_plus_string/warning
15DEPRECATION WARNING: Using / for division is deprecated and will be removed in Dart Sass 2.0.0.
16
17Recommendation: math.div(1, 2)
18
19More info and automated migrator: https://sass-lang.com/d/slash-div
20
21  ,
221 | a {b: 1 / 2 + foo()}
23  |       ^^^^^
24  '
25    input.scss 1:7  root stylesheet
26
27<===>
28================================================================================
29<===> slash/with_string/slash_minus_string/options.yml
30---
31:warning_todo:
32- sass/libsass#2887
33
34<===> slash/with_string/slash_minus_string/input.scss
35a {b: 1 / 2 - foo()}
36
37<===> slash/with_string/slash_minus_string/output.css
38a {
39  b: 0.5-foo();
40}
41
42<===> slash/with_string/slash_minus_string/warning
43DEPRECATION WARNING: Using / for division is deprecated and will be removed in Dart Sass 2.0.0.
44
45Recommendation: math.div(1, 2)
46
47More info and automated migrator: https://sass-lang.com/d/slash-div
48
49  ,
501 | a {b: 1 / 2 - foo()}
51  |       ^^^^^
52  '
53    input.scss 1:7  root stylesheet
54
55<===>
56================================================================================
57<===> slash/with_string/slash_slash_string/options.yml
58---
59:todo:
60- sass/libsass#2840
61
62<===> slash/with_string/slash_slash_string/input.scss
63a {b: 1 / 2 / foo()}
64
65<===> slash/with_string/slash_slash_string/output.css
66a {
67  b: 1/2/foo();
68}
69
70<===>
71================================================================================
72<===> slash/with_string/string_plus_slash/options.yml
73---
74:warning_todo:
75- sass/libsass#2887
76
77<===> slash/with_string/string_plus_slash/input.scss
78a {b: foo() + 1 / 2}
79
80<===> slash/with_string/string_plus_slash/output.css
81a {
82  b: foo()0.5;
83}
84
85<===> slash/with_string/string_plus_slash/warning
86DEPRECATION WARNING: Using / for division is deprecated and will be removed in Dart Sass 2.0.0.
87
88Recommendation: math.div(1, 2)
89
90More info and automated migrator: https://sass-lang.com/d/slash-div
91
92  ,
931 | a {b: foo() + 1 / 2}
94  |               ^^^^^
95  '
96    input.scss 1:15  root stylesheet
97
98<===>
99================================================================================
100<===> slash/with_string/string_minus_slash/options.yml
101---
102:warning_todo:
103- sass/libsass#2887
104
105<===> slash/with_string/string_minus_slash/input.scss
106a {b: foo() - 1 / 2}
107
108<===> slash/with_string/string_minus_slash/output.css
109a {
110  b: foo()-0.5;
111}
112
113<===> slash/with_string/string_minus_slash/warning
114DEPRECATION WARNING: Using / for division is deprecated and will be removed in Dart Sass 2.0.0.
115
116Recommendation: math.div(1, 2)
117
118More info and automated migrator: https://sass-lang.com/d/slash-div
119
120  ,
1211 | a {b: foo() - 1 / 2}
122  |               ^^^^^
123  '
124    input.scss 1:15  root stylesheet
125