Open
Description
To reproduce:
.print(@list) {
length-is {
a: length(@list);
}
}
.print({
@a: {
overflow: hidden;
}
@b: {
overflow: hidden;
}
});
Current behavior:
Output is:
length-is {
a: 1;
}
Expected behavior:
Output should be,
length-is {
a: 2;
}
As I need to iterate recursively to create few combinations, but problem is length is always zero, length works correctly for simple values, but not for property groups.