Mária Jurčovičová
Mária Jurčovičová
Thank you, that seems like parser error.
Closer font: Source Sans Pro
Thank you, I will have a look at this after #342.
Note to self: The issue is caused by these lines: https://github.com/SomMeri/less4j/blob/bca5cb262c018f38ea8c58175df344c7d2345148/src/main/java/com/github/sommeri/less4j/core/compiler/stages/MixinsRulesetsSolver.java#L139-L144 The `toIndependentWorkingCopy` ensures that second call does not see imported variables. Solution: the `joinIfIndependent` method needs to work differently...
Thank you, it is a bug. Workaround: ``` less .test(@val) when ((@val = 0) and (get-unit(@val) = ~"" )) { okay: yes get-unit(@val); } ```
Unfortunately, I am trying to keep Less4j as close as possible to less.js, so this would need to be first in there. This relates to other issues where interpolated selector...
It is interesting problem. First thing that comes to mind is to use [custom functions](https://github.com/SomMeri/less4j/wiki/Extending-Less-Language) which is a bit of workaround and not optimal solution, but if you know you...
The slow down may be due to scopes being stacked upon each other when you call mixin. If inside uses variable that is defined only somewhere deep down, nested call...
You understand it right. It allows easy discard of changes made by mixins and to save the state of the scope for mixins, so that they use variables as they...
Related to #320