mirror of
https://github.com/less/less.js.git
synced 2026-05-01 03:00:22 -04:00
* Fixes Mixin call args not being visited * Add ability to use ES6 in tests * Fixes #3205 and partial 3.0 math regression #1880
15 lines
176 B
Plaintext
15 lines
176 B
Plaintext
@plugin "./plugin/plugin-preeval";
|
|
|
|
.two(@rules: {}) {
|
|
:root.two & {
|
|
@rules();
|
|
}
|
|
}
|
|
|
|
.one {
|
|
.two({
|
|
--foo: @replace !important;
|
|
});
|
|
}
|
|
|
|
@stop: end; |