modules/custom-css/custom-css/preprocessors/lessc.inc.php 1 location
|
@@ 2700-2710 (lines=11) @@
|
2697 |
|
} |
2698 |
|
|
2699 |
|
$inParens = $this->inParens; |
2700 |
|
if ($this->literal("(") && |
2701 |
|
($this->inParens = true) && $this->expression($exp) && |
2702 |
|
$this->literal(")")) |
2703 |
|
{ |
2704 |
|
$out = $exp; |
2705 |
|
$this->inParens = $inParens; |
2706 |
|
return true; |
2707 |
|
} else { |
2708 |
|
$this->inParens = $inParens; |
2709 |
|
$this->seek($s); |
2710 |
|
} |
2711 |
|
|
2712 |
|
return false; |
2713 |
|
} |
modules/custom-css/custom-css/preprocessors/scss.inc.php 1 location
|
@@ 3263-3273 (lines=11) @@
|
3260 |
|
$s = $this->seek(); |
3261 |
|
|
3262 |
|
$inParens = $this->inParens; |
3263 |
|
if ($this->literal("(") && |
3264 |
|
($this->inParens = true) && $this->expression($exp) && |
3265 |
|
$this->literal(")")) |
3266 |
|
{ |
3267 |
|
$out = $exp; |
3268 |
|
$this->inParens = $inParens; |
3269 |
|
return true; |
3270 |
|
} else { |
3271 |
|
$this->inParens = $inParens; |
3272 |
|
$this->seek($s); |
3273 |
|
} |
3274 |
|
|
3275 |
|
return false; |
3276 |
|
} |