class SassEachNode in Sassy 7
Same name and namespace in other branches
- 7.3 phpsass/tree/SassEachNode.php \SassEachNode
SassEachNode class. Represents a Sass @each loop. @package PHamlP @subpackage Sass.tree
Hierarchy
- class \SassNode
- class \SassEachNode
Expanded class hierarchy of SassEachNode
File
- phamlp/
sass/ tree/ SassEachNode.php, line 25
View source
class SassEachNode extends SassNode {
const MATCH = '/@each\\s+[!\\$](\\w+)\\s+in\\s+(.+)$/i';
const VARIABLE = 1;
const IN = 2;
/**
* @var string variable name for the loop
*/
private $variable;
/**
* @var string expression that provides the loop values
*/
private $in;
/**
* SassEachNode constructor.
* @param object source token
* @return SassEachNode
*/
public function __construct($token) {
parent::__construct($token);
if (!preg_match(self::MATCH, $token->source, $matches)) {
throw new SassEachNodeException('Invalid {what}', array(
'{what}' => '@each directive',
), $this);
}
$this->variable = $matches[self::VARIABLE];
$this->in = $matches[self::IN];
}
/**
* Parse this node.
* @param SassContext the context in which this node is parsed
* @return array parsed child nodes
*/
public function parse($context) {
$children = array();
$context = new SassContext($context);
foreach (explode(',', $this
->evaluate($this->in, $context)->value) as $var) {
$context
->setVariable($this->variable, new SassString(trim($var)));
$children = array_merge($children, $this
->parseChildren($context));
}
return $children;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
SassEachNode:: |
private | property | * | |
SassEachNode:: |
private | property | * | |
SassEachNode:: |
constant | |||
SassEachNode:: |
constant | |||
SassEachNode:: |
public | function | * Parse this node. * | |
SassEachNode:: |
constant | |||
SassEachNode:: |
public | function |
* SassEachNode constructor.
* Overrides SassNode:: |
|
SassNode:: |
protected | property | * | |
SassNode:: |
protected | property | * | |
SassNode:: |
protected | property | * | |
SassNode:: |
protected | property | * | |
SassNode:: |
public | function | * Adds a child to this node. * | |
SassNode:: |
public | function | * Adds a warning to the node. * | |
SassNode:: |
protected | function | * Evaluates a SassScript expression. * | |
SassNode:: |
public | function | * Returns the node's children * | |
SassNode:: |
private | function | * Returns the debug_info option setting for this node * | |
SassNode:: |
private | function | * Returns the filename for this node * | |
SassNode:: |
public | function | * Returns the last child node of this node. * | |
SassNode:: |
private | function | * Returns the level of this node. * | |
SassNode:: |
private | function | * Returns the line number for this node * | |
SassNode:: |
private | 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:: |
private | function | * Returns the source for this node * | |
SassNode:: |
public | function | * Returns the render style of the document tree. * | |
SassNode:: |
private | 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:: |
protected | function | * Replace interpolated SassScript contained in '#{}' with the parsed value. * | |
SassNode:: |
public static | function | * Returns a value indicating if the token represents this type of node. * | 7 |
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:: |
protected | function | * Parse the children of the node. * | |
SassNode:: |
public | function | * Resets children when cloned * | |
SassNode:: |
public | function | * Getter. * | |
SassNode:: |
public | function | * Setter. * |