Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions spec/libsass-todo-issues/issue_2082/error
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
DEPRECATION WARNING on line 3 of /sass/spec/libsass-issues/issue_2082/input.scss: #{} interpolation near operators will be simplified
in a future version of Sass. To preserve the current behavior, use quotes:

unquote('#{$prefix}"-"#{$suffix}')

You can use the sass-convert command to automatically fix most cases.

Error: Invalid CSS after "": expected selector, was """-bar"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Perhaps, the text above this line need to be removed?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sass spec is meant to handle this. Something is up, I need to look into it. This is a low priority issue for now.

on line 5 of /sass/spec/libsass-issues/issue_2082/input.scss
Use --trace for backtrace.
Empty file.
7 changes: 7 additions & 0 deletions spec/libsass-todo-issues/issue_2082/input.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
$prefix: "";
$suffix: bar;
$class: $prefix#{"-"}#{$suffix};

#{$class} {
foo: bar;
}
1 change: 1 addition & 0 deletions spec/libsass-todo-issues/issue_2082/status
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
65