projects/plugins/jetpack/modules/custom-css/custom-css/preprocessors/lessc.inc.php 1 location
|
@@ 3547-3551 (lines=5) @@
|
3544 |
|
} |
3545 |
|
|
3546 |
|
// TODO this depends on $this->count |
3547 |
|
if ($this->peek("(.*?)(\n|$)", $m, $count)) { |
3548 |
|
throw new exception("$msg: failed at `$m[1]` $loc"); |
3549 |
|
} else { |
3550 |
|
throw new exception("$msg: $loc"); |
3551 |
|
} |
3552 |
|
} |
3553 |
|
|
3554 |
|
protected function pushBlock($selectors=null, $type=null) { |
projects/plugins/jetpack/modules/custom-css/custom-css/preprocessors/scss.inc.php 1 location
|
@@ 3909-3913 (lines=5) @@
|
3906 |
|
$loc = "line: $line"; |
3907 |
|
} |
3908 |
|
|
3909 |
|
if ($this->peek("(.*?)(\n|$)", $m, $count)) { |
3910 |
|
throw new Exception("$msg: failed at `$m[1]` $loc"); |
3911 |
|
} else { |
3912 |
|
throw new Exception("$msg: $loc"); |
3913 |
|
} |
3914 |
|
} |
3915 |
|
|
3916 |
|
public function getLineNo($pos) { |