public function SassNode::__construct in Sassy 7.3
Same name and namespace in other branches
- 7 phamlp/sass/tree/SassNode.php \SassNode::__construct()
Constructor.
Parameters
object source token:
Return value
17 calls to SassNode::__construct()
- SassCommentNode::__construct in phpsass/
tree/ SassCommentNode.php - SassCommentNode constructor.
- SassDebugNode::__construct in phpsass/
tree/ SassDebugNode.php - SassDebugNode.
- SassDirectiveNode::__construct in phpsass/
tree/ SassDirectiveNode.php - SassDirectiveNode.
- SassEachNode::__construct in phpsass/
tree/ SassEachNode.php - SassEachNode constructor.
- SassExtendNode::__construct in phpsass/
tree/ SassExtendNode.php - SassExtendNode.
17 methods override SassNode::__construct()
- SassCommentNode::__construct in phpsass/
tree/ SassCommentNode.php - SassCommentNode constructor.
- SassDebugNode::__construct in phpsass/
tree/ SassDebugNode.php - SassDebugNode.
- SassDirectiveNode::__construct in phpsass/
tree/ SassDirectiveNode.php - SassDirectiveNode.
- SassEachNode::__construct in phpsass/
tree/ SassEachNode.php - SassEachNode constructor.
- SassExtendNode::__construct in phpsass/
tree/ SassExtendNode.php - SassExtendNode.
File
- phpsass/
tree/ SassNode.php, line 63
Class
- SassNode
- SassNode class. Base class for all Sass nodes. @package PHamlP @subpackage Sass.tree
Code
public function __construct($token) {
$this->token = $token;
}