c6 icon indicating copy to clipboard operation
c6 copied to clipboard

calc() expression reducer

Open c9s opened this issue 10 years ago • 1 comments

While SASS is interpreing this as it is:

$some: 22;
width: calc(100% - 10px + 20px + $some);

We can reduce the expression if they are the same unit to:

width: calc(100% + 10px + 22);

c9s avatar May 01 '15 04:05 c9s

Add FunctionCall.IsLiteral() method to check if we need to present the function call as literal string.

c9s avatar May 19 '15 22:05 c9s