class SassVariableNode in Sassy 7.3
Same name and namespace in other branches
- 7 phamlp/sass/tree/SassVariableNode.php \SassVariableNode
SassVariableNode class. Represents a variable. @package PHamlP @subpackage Sass.tree
Hierarchy
- class \SassNode
- class \SassVariableNode
Expanded class hierarchy of SassVariableNode
File
- phpsass/
tree/ SassVariableNode.php, line 18
View source
class SassVariableNode extends SassNode {
const MATCH = '/^([!$])([\\w-]+)\\s*:?\\s*((\\|\\|)?=)?\\s*(.+?)\\s*(!default)?;?$/i';
const IDENTIFIER = 1;
const NAME = 2;
const SASS_ASSIGNMENT = 3;
const SASS_DEFAULT = 4;
const VALUE = 5;
const SCSS_DEFAULT = 6;
const SASS_IDENTIFIER = '!';
const SCSS_IDENTIFIER = '$';
/**
* @var string name of the variable
*/
private $name;
/**
* @var string value of the variable or expression to evaluate
*/
private $value;
/**
* @var boolean whether the variable is optionally assigned
*/
private $isDefault;
/**
* SassVariableNode constructor.
* @param object source token
* @return SassVariableNode
*/
public function __construct($token) {
parent::__construct($token);
preg_match(self::MATCH, $token->source, $matches);
if (empty($matches[self::NAME]) || $matches[self::VALUE] === '') {
throw new SassVariableNodeException('Invalid variable definition; name and expression required', $this);
}
$this->name = $matches[self::NAME];
$this->value = $matches[self::VALUE];
$this->isDefault = !empty($matches[self::SASS_DEFAULT]) || !empty($matches[self::SCSS_DEFAULT]);
// Warn about deprecated features
if ($matches[self::IDENTIFIER] === self::SASS_IDENTIFIER) {
$this
->addWarning('Variables prefixed with "!" is deprecated; use "' . $this->name . '"');
}
if (!empty($matches[SassVariableNode::SASS_ASSIGNMENT])) {
$this
->addWarning('Setting variables with "' . (!empty($matches[SassVariableNode::SASS_DEFAULT]) ? '||' : '') . '=" is deprecated; use "$' . $this->name . ': ' . $this->value . (!empty($matches[SassVariableNode::SASS_DEFAULT]) ? ' !default' : ''));
}
}
/**
* Parse this node.
* Sets the variable in the current context.
* @param SassContext the context in which this node is parsed
* @return array the parsed node - an empty array
*/
public function parse($context) {
if (!$this->isDefault || !$context
->hasVariable($this->name)) {
$context
->setVariable($this->name, $this
->evaluate($this->value, $context));
}
$this
->parseChildren($context);
// Parse any warnings
return array();
}
/**
* Returns a value indicating if the token represents this type of node.
* @param object token
* @return boolean true if the token represents this type of node, false if not
*/
public static function isa($token) {
return $token->source[0] === self::SASS_IDENTIFIER || $token->source[0] === self::SCSS_IDENTIFIER;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
SassNode:: |
public | property | ||
SassNode:: |
public | property | 1 | |
SassNode:: |
public | property | ||
SassNode:: |
public | property | ||
SassNode:: |
public | function | Adds a child to this node. | |
SassNode:: |
public | function | Adds a warning to the node. | |
SassNode:: |
public | function | Evaluates a SassScript expression. | |
SassNode:: |
public | function | Returns the node's children | |
SassNode:: |
public | function | Returns the debug_info option setting for this node | |
SassNode:: |
public | function | Returns the filename for this node | |
SassNode:: |
public | function | Returns the last child node of this node. | |
SassNode:: |
public | function | Returns the level of this node. | |
SassNode:: |
public | function | Returns the line number for this node | |
SassNode:: |
public | function | Returns the line_numbers option setting for this node | |
SassNode:: |
public | function | Returns the node's parent | |
SassNode:: |
public | function | Returns the Sass parser. | |
SassNode:: |
public | function | Returns the property syntax being used. | |
SassNode:: |
public | function | Returns the renderer. | |
SassNode:: |
public | function | Returns the SassScript parser. | |
SassNode:: |
public | function | Returns the source for this node | |
SassNode:: |
public | function | Returns the render style of the document tree. | |
SassNode:: |
public | function | Returns vendor specific properties | |
SassNode:: |
public | function | Returns a value indicating if this node has children | |
SassNode:: |
public | function | Return a value indicating if this node has a parent | |
SassNode:: |
public | function | Returns a value indicating whether this node is in a directive | |
SassNode:: |
public | function | Returns a value indicating whether this node is in a SassScript directive | |
SassNode:: |
public | function | Replace interpolated SassScript contained in '#{}' with the parsed value. | |
SassNode:: |
public | function | Returns a value indicating if this node is a child of the passed node. This just checks the levels of the nodes. If this node is at a greater level than the passed node if is a child of it. | |
SassNode:: |
public | function | Parse the children of the node. | |
SassNode:: |
public | function | Resets children when cloned | |
SassNode:: |
public | function | Getter. | |
SassNode:: |
public | function | Setter. | |
SassVariableNode:: |
private | property | ||
SassVariableNode:: |
private | property | ||
SassVariableNode:: |
private | property | ||
SassVariableNode:: |
constant | |||
SassVariableNode:: |
public static | function |
Returns a value indicating if the token represents this type of node. Overrides SassNode:: |
|
SassVariableNode:: |
constant | |||
SassVariableNode:: |
constant | |||
SassVariableNode:: |
public | function | Parse this node. Sets the variable in the current context. | |
SassVariableNode:: |
constant | |||
SassVariableNode:: |
constant | |||
SassVariableNode:: |
constant | |||
SassVariableNode:: |
constant | |||
SassVariableNode:: |
constant | |||
SassVariableNode:: |
constant | |||
SassVariableNode:: |
public | function |
SassVariableNode constructor. Overrides SassNode:: |