Given the following CSS:
left: calc(0px - (100vw - 10px) / 2);
Which I expect to become:
left: calc((-100vw - - 10px) / 2);
Actually becomes the mathematically incorrect:
left: calc((-100vw - - 10px) / -2);
Calculations with the structure 0 - (A - B) / C are incorrectly reduced to (-A - -B) - C while the correct solve is (-A - -B) / C.