1<===> input.scss
2.debug {
3  @debug-this {
4    foo: bar;
5  }
6}
7<===> output.css
8@debug-this {
9  .debug {
10    foo: bar;
11  }
12}
13