Skip to content

Commit b6e77b6

Browse files
author
jurcovicovam
committed
Turned of variables returning from detached rulesets to be consistent with
less/less.js#2083 . #186
1 parent 666542b commit b6e77b6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/github/sommeri/less4j/core/compiler/stages/MixinsRulesetsSolver.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ public boolean accepts(String name, Expression value) {
214214
if (protectionLevel==ScopeProtection.LOCAL_ONLY)
215215
return true;
216216

217-
return importTargetScope.getValue(name)==null;
217+
return false;//importTargetScope.getValue(name)==null;
218218
}
219219

220220
}

0 commit comments

Comments
 (0)