-
Notifications
You must be signed in to change notification settings - Fork 89
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge indented syntax into other examples
- Loading branch information
Showing
20 changed files
with
750 additions
and
378 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,96 @@ | ||
<===> inline/input.sass | ||
|
||
@each $a in b, c | ||
.#{$a} | ||
d: $a | ||
|
||
<===> inline/output.css | ||
.b { | ||
d: b; | ||
} | ||
|
||
.c { | ||
d: c; | ||
} | ||
|
||
<===> | ||
================================================================================ | ||
<===> error/multiline/after-each/input.sass | ||
|
||
@each | ||
$a in b, c | ||
.#{$a} | ||
d: $a | ||
|
||
<===> error/multiline/after-each/error | ||
Error: expected "$". | ||
, | ||
2 | @each | ||
| ^ | ||
' | ||
input.sass 2:6 root stylesheet | ||
|
||
<===> | ||
================================================================================ | ||
<===> error/multiline/after-variable/input.sass | ||
|
||
@each $a | ||
in b, c | ||
.#{$a} | ||
d: $a | ||
|
||
<===> error/multiline/after-variable/error | ||
Error: Expected "in". | ||
, | ||
2 | @each $a | ||
| ^ | ||
' | ||
input.sass 2:10 root stylesheet | ||
|
||
<===> | ||
================================================================================ | ||
<===> error/multiline/after-in/input.sass | ||
|
||
@each $a in | ||
b, c | ||
.#{$a} | ||
d: $a | ||
|
||
<===> error/multiline/after-in/error | ||
Error: Expected expression. | ||
, | ||
2 | @each $a in | ||
| ^ | ||
' | ||
input.sass 2:12 root stylesheet | ||
|
||
<===> | ||
================================================================================ | ||
<===> error/multiline/in-expression/input.sass | ||
|
||
@each $a in b, | ||
c | ||
.#{$a} | ||
d: $a | ||
|
||
<===> error/multiline/in-expression/output.css | ||
c .b { | ||
d: b; | ||
} | ||
|
||
<===> | ||
================================================================================ | ||
<===> error/multiline/in-wrapped-expression/input.sass | ||
|
||
@each $a in (b, | ||
c) | ||
.#{$a} | ||
d: $a | ||
|
||
<===> error/multiline/in-wrapped-expression/error | ||
Error: expected ")". | ||
, | ||
2 | @each $a in (b, | ||
| ^ | ||
' | ||
input.sass 2:16 root stylesheet |
Oops, something went wrong.