You are here

public function SassElseNode::__construct in Sassy 7

Same name and namespace in other branches
  1. 7.3 phpsass/tree/SassElseNode.php \SassElseNode::__construct()

* SassElseNode constructor. *

Parameters

object source token: * @return SassElseNode

Overrides SassIfNode::__construct

File

phamlp/sass/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);
}