|
1 | 1 | <===> unquoted/input.scss
|
2 |
| -a { |
3 |
| - b: quote(c); |
4 |
| -} |
| 2 | +a {b: quote(c)} |
5 | 3 |
|
6 | 4 | <===> unquoted/output.css
|
7 | 5 | a {
|
|
11 | 9 | <===>
|
12 | 10 | ================================================================================
|
13 | 11 | <===> quoted_double/input.scss
|
14 |
| -a { |
15 |
| - b: quote("c"); |
16 |
| -} |
| 12 | +a {b: quote("c")} |
17 | 13 |
|
18 | 14 | <===> quoted_double/output.css
|
19 | 15 | a {
|
|
23 | 19 | <===>
|
24 | 20 | ================================================================================
|
25 | 21 | <===> quoted_single/input.scss
|
26 |
| -a { |
27 |
| - b: quote('c'); |
28 |
| -} |
| 22 | +a {b: quote('c')} |
29 | 23 |
|
30 | 24 | <===> quoted_single/output.css
|
31 | 25 | a {
|
|
36 | 30 | ================================================================================
|
37 | 31 | <===> quote_unquoted_quote/single/input.scss
|
38 | 32 | // See sass/libsass#2873
|
39 |
| -a { |
40 |
| - b: quote(unquote('"')); |
41 |
| -} |
| 33 | +a {b: quote(unquote('"'))} |
42 | 34 |
|
43 | 35 | <===> quote_unquoted_quote/single/output.css
|
44 | 36 | a {
|
|
49 | 41 | ================================================================================
|
50 | 42 | <===> quote_unquoted_quote/double/input.scss
|
51 | 43 | // See sass/libsass#2873
|
52 |
| -a { |
53 |
| - b: quote(unquote('"') + unquote("'")); |
54 |
| -} |
| 44 | +a {b: quote(unquote('"') + unquote("'"))} |
55 | 45 |
|
56 | 46 | <===> quote_unquoted_quote/double/output.css
|
57 | 47 | a {
|
|
61 | 51 | <===>
|
62 | 52 | ================================================================================
|
63 | 53 | <===> error/argument_type/input.scss
|
64 |
| -a { |
65 |
| - b: quote((1, 2, 3)); |
66 |
| -} |
| 54 | +a {b: quote((1, 2, 3))} |
67 | 55 |
|
68 | 56 | <===> error/argument_type/error
|
69 | 57 | Error: $string: 1, 2, 3 is not a string.
|
70 | 58 | ,
|
71 |
| -2 | b: quote((1, 2, 3)); |
72 |
| - | ^^^^^^^^^^^^^^^^ |
| 59 | +1 | a {b: quote((1, 2, 3))} |
| 60 | + | ^^^^^^^^^^^^^^^^ |
73 | 61 | '
|
74 |
| - input.scss 2:6 root stylesheet |
| 62 | + input.scss 1:7 root stylesheet |
75 | 63 |
|
76 | 64 | <===> error/argument_type/error-libsass
|
77 | 65 | Error: argument `$string` of `quote($string)` must be a string
|
78 |
| - on line 2:6 of input.scss, in function `quote` |
79 |
| - from line 2:6 of input.scss |
80 |
| ->> b: quote((1, 2, 3)); |
| 66 | + on line 1:7 of input.scss, in function `quote` |
| 67 | + from line 1:7 of input.scss |
| 68 | +>> a {b: quote((1, 2, 3))} |
| 69 | + |
| 70 | + ------^ |
81 | 71 |
|
82 |
| - -----^ |
0 commit comments