public function SassElseNode::__construct in Sassy 7.3
Same name and namespace in other branches
- 7 phamlp/sass/tree/SassElseNode.php \SassElseNode::__construct()
SassElseNode constructor.
Parameters
object source token:
Return value
Overrides SassIfNode::__construct
File
- phpsass/
tree/ SassElseNode.php, line 25
Class
- SassElseNode
- SassElseNode class. Represents Sass Else If and Else statements. Else If and Else statement nodes are chained below the If statement node. @package PHamlP @subpackage Sass.tree
Code
public function __construct($token) {
parent::__construct($token, false);
}