Skip to content

Commit 73acfbf

Browse files
authored
[Indented syntax improvements] Specs (#2041)
1 parent 1dafbb0 commit 73acfbf

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

87 files changed

+5548
-1171
lines changed

Diff for: spec/callable/arguments.hrx

+14-40
Original file line numberDiff line numberDiff line change
@@ -263,6 +263,20 @@ a {
263263
b: (positional: ((1,)), named: (c: 2));
264264
}
265265

266+
<===>
267+
================================================================================
268+
<===> function/arguments/sass/input.sass
269+
@function a($b, $c)
270+
@return d
271+
272+
e
273+
f: a(g, h)
274+
275+
<===> function/arguments/sass/output.css
276+
e {
277+
f: d;
278+
}
279+
266280
<===>
267281
================================================================================
268282
<===> function/error/comma_only/input.scss
@@ -291,43 +305,3 @@ Error: Positional arguments must come before keyword arguments.
291305
| ^
292306
'
293307
input.scss 3:14 root stylesheet
294-
295-
<===>
296-
================================================================================
297-
<===> function/error/sass/multi-line-arguments/declaration/input.sass
298-
@function a(
299-
$b,
300-
$c
301-
)
302-
@return d
303-
304-
e
305-
f: a(g, h)
306-
307-
<===> function/error/sass/multi-line-arguments/declaration/error
308-
Error: expected ")".
309-
,
310-
1 | @function a(
311-
| ^
312-
'
313-
input.sass 1:13 root stylesheet
314-
315-
<===>
316-
================================================================================
317-
<===> function/error/sass/multi-line-arguments/invocation/input.sass
318-
@function a($b, $c)
319-
@return d
320-
321-
e
322-
f: a(
323-
g,
324-
h
325-
)
326-
327-
<===> function/error/sass/multi-line-arguments/invocation/error
328-
Error: expected ")".
329-
,
330-
5 | f: a(
331-
| ^
332-
'
333-
input.sass 5:8 root stylesheet

0 commit comments

Comments
 (0)