Mixins with semi colons not converted correctly
less code
.border-radius(0; 0; @box-border-radius; @box-border-radius);
is converted to this scss code
@include border-radius(0; 0; $box-border-radius; $box-border-radius);
semi colons causes errors in sass
Pull requests are welcome! At least provide the correct syntax...
Opened a SO thread about this but so far nothing seems to nail it: http://stackoverflow.com/q/39757272/337446
After i second look, I think the question you posted in SO is a little misleading.
.mixin is NOT keyword in less the Wiktor Stribiżew answer is grabing the . selector from less and converting it to sass eg: if less mixin is
.whatever()
It is going to be converted to
#whatever
which obviously not a sass keyword