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