projects/plugins/jetpack/modules/custom-css/custom-css/preprocessors/lessc.inc.php 1 location
|
@@ 3343-3349 (lines=7) @@
|
3340 |
|
} |
3341 |
|
|
3342 |
|
// consume a keyword |
3343 |
|
protected function keyword(&$word) { |
3344 |
|
if ($this->match('([\w_\-\*!"][\w\-_"]*)', $m)) { |
3345 |
|
$word = $m[1]; |
3346 |
|
return true; |
3347 |
|
} |
3348 |
|
return false; |
3349 |
|
} |
3350 |
|
|
3351 |
|
// consume an end of statement delimiter |
3352 |
|
protected function end() { |
projects/plugins/jetpack/modules/custom-css/custom-css/preprocessors/scss.inc.php 1 location
|
@@ 3864-3870 (lines=7) @@
|
3861 |
|
return false; |
3862 |
|
} |
3863 |
|
|
3864 |
|
protected function placeholder(&$placeholder) { |
3865 |
|
if ($this->match('([\w\-_]+)', $m)) { |
3866 |
|
$placeholder = $m[1]; |
3867 |
|
return true; |
3868 |
|
} |
3869 |
|
return false; |
3870 |
|
} |
3871 |
|
|
3872 |
|
// consume an end of statement delimiter |
3873 |
|
protected function end() { |