-
Notifications
You must be signed in to change notification settings - Fork 468
Closed
Description
[Forwarding: https://github.com/sass/node-sass/issues/840]
Tested with latest master: 0135278.
Given the input:
$on: false;
@if $on == false {
s { a: ss }
}
LibSass generates:
s {
a: ss; }
If we remove space right after $on
:
$on: false;
@if $on== false {
s { a: ss }
}
The generated output is same.
If we remove space both before and after ==
:
$on: false;
@if $on==false {
s { a: ss }
}
It throws:
error reading values after $on
If we remove space only before false
:
$on: false;
@if $on ==false {
s { a: ss }
}
It throws:
error reading values after
(nothing after after
)