Scss compiler weird behaviour

Hi,

i’m trying to compile this:

.a{ .b{ tr:nth-child(1) td:nth-child(1) { border: 0; } } } it should compile to:​ .a .b tr:nth-child(1) td:nth-child(1) { border: 0; } but instead it give:

​.a .b nth-child(1) {
border: 0;
}

is this a bug? Should i report it on the bug tracker?

ps. this forum is weird,it’s slow and i’m not able to indent the code…

Yeah, it looks like a bug. Please file a issue for it with those examples. It will help the guys working on the SASS compiler to get it right.

For reference to future readers: this was
#13636
which was fixed in Vaadin Sass compiler 0.9.6 .