You are here

public function SassElseNode::__construct in Sassy 7.3

Same name and namespace in other branches
  1. 7 phamlp/sass/tree/SassElseNode.php \SassElseNode::__construct()

SassElseNode constructor.

Parameters

object source token:

Return value

SassElseNode

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);
}