Skip to content

Commit

Permalink
Comments after semicolons
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesnw committed Jan 3, 2025
1 parent bdcca1e commit dd10b89
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions spec/parser/semicolon.hrx
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,34 @@ a {
d: e;
}

<===>
================================================================================
<===> sass/trailing_inline_comment/cr/input.sass
a
b: c; /* f */
d: e;

<===> sass/trailing_inline_comment/cr/output.css
a {
b: c;
d: e;
}

<===>
================================================================================
<===> sass/trailing_loud_comment/cr/input.sass
a
b: c;
/* f */
d: e;

<===> sass/trailing_loud_comment/cr/output.css
a {
b: c;
/* f */
d: e;
}

<===>
================================================================================
<===> sass/nested/cr/input.sass
Expand Down

0 comments on commit dd10b89

Please sign in to comment.