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