-
Notifications
You must be signed in to change notification settings - Fork 3.4k
Closed
Labels
Description
.makeButton(@padding, @background) {
padding: @padding;
background: @background;
}
.button {
.makeButton(
@padding: 5px, /* Comment */
@background: black /* Comment */
);
}
The line 9, @background: black /* Comment */
will error with: expected ')' got '/'
However these are fine:
.button {
.makeButton(
@padding: 5px, /* Comment */
@background: black); /* Comment */
}
.button {
.makeButton(
@padding: 5px, /* Comment */
@background: black
);
}
.button {
.makeButton(
@background: black, /* Comment */
@padding: 5px /* Comment */
);
}
This is using less.js 2.6.0
on node 4.2.6
.