SassDebugNode.php in Sassy 7.3
File
phpsass/tree/SassDebugNode.php
View source
<?php
class SassDebugNode extends SassNode {
const IDENTIFIER = '@';
const MATCH = '/^@(?:debug|warn)\\s+(.+?)\\s*;?$/';
const MESSAGE = 1;
private $message;
private $params;
private $warning;
public function __construct($token, $message = false) {
parent::__construct($token);
if (is_string($message)) {
$this->message = $message;
$this->warning = true;
}
else {
preg_match(self::MATCH, $token->source, $matches);
$this->message = $matches[self::MESSAGE];
$this->warning = $message;
}
}
public function parse($context) {
if (!$this->warning || $this->root->parser->quiet === false) {
set_error_handler(array(
$this,
'errorHandler',
));
trigger_error($this->warning ? $this
->interpolate($this->message, $context) : $this
->evaluate($this->message, $context)
->toString());
restore_error_handler();
}
return array();
}
public function errorHandler($errno, $message) {
echo '<div style="background-color:#ce4dd6;border-bottom:1px dashed #88338d;color:white;font:10pt verdana;margin:0;padding:0.5em 2%;width:96%;"><p style="height:auto;margin:0.25em 0;padding:0;width:100%;"><span style="font-weight:bold;">SASS ' . ($this->warning ? 'WARNING' : 'DEBUG') . ":</span> {$message}</p><p style=\"margin:0.1em;padding:0;padding-left:0.5em;width:100%;\">{$this->filename}::{$this->line}</p><p style=\"margin:0.1em;padding:0;padding-left:0.5em;width:100%;\">Source: {$this->source}</p></div>";
}
}
Classes
Name |
Description |
SassDebugNode |
SassDebugNode class.
Represents a Sass @debug or @warn directive.
@package PHamlP
@subpackage Sass.tree |