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