You are here

class SassElseNode in Sassy 7

Same name and namespace in other branches
  1. 7.3 phpsass/tree/SassElseNode.php \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

Hierarchy

Expanded class hierarchy of SassElseNode

File

phamlp/sass/tree/SassElseNode.php, line 19

View source
class SassElseNode extends SassIfNode {

  /**
   * SassElseNode constructor.
   * @param object source token
   * @return SassElseNode
   */
  public function __construct($token) {
    parent::__construct($token, false);
  }

}

Members

Namesort descending Modifiers Type Description Overrides
SassElseNode::__construct public function * SassElseNode constructor. * Overrides SassIfNode::__construct
SassIfNode::$else private property *
SassIfNode::$expression private property *
SassIfNode::addElse public function * Adds an "else" statement to this node. *
SassIfNode::ELSE_EXPRESSION constant
SassIfNode::ELSE_IF constant
SassIfNode::IF_EXPRESSION constant
SassIfNode::isElse private function * Returns a value indicating if this node is an "else" node. *
SassIfNode::MATCH_ELSE constant
SassIfNode::MATCH_IF constant
SassIfNode::parse public function * Parse this node. *
SassNode::$children protected property *
SassNode::$parent protected property *
SassNode::$root protected property *
SassNode::$token protected property *
SassNode::addChild public function * Adds a child to this node. *
SassNode::addWarning public function * Adds a warning to the node. *
SassNode::evaluate protected function * Evaluates a SassScript expression. *
SassNode::getChildren public function * Returns the node's children *
SassNode::getDebug_info private function * Returns the debug_info option setting for this node *
SassNode::getFilename private function * Returns the filename for this node *
SassNode::getLastChild public function * Returns the last child node of this node. *
SassNode::getLevel private function * Returns the level of this node. *
SassNode::getLine private function * Returns the line number for this node *
SassNode::getLine_numbers private function * Returns the line_numbers option setting for this node *
SassNode::getParent public function * Returns the node's parent *
SassNode::getParser public function * Returns the Sass parser. *
SassNode::getPropertySyntax public function * Returns the property syntax being used. *
SassNode::getRenderer public function * Returns the renderer. *
SassNode::getScript public function * Returns the SassScript parser. *
SassNode::getSource private function * Returns the source for this node *
SassNode::getStyle public function * Returns the render style of the document tree. *
SassNode::getVendor_properties private function * Returns vendor specific properties *
SassNode::hasChildren public function * Returns a value indicating if this node has children *
SassNode::hasParent public function * Return a value indicating if this node has a parent *
SassNode::inDirective public function * Returns a value indicating whether this node is in a directive *
SassNode::inSassScriptDirective public function * Returns a value indicating whether this node is in a SassScript directive *
SassNode::interpolate protected function * Replace interpolated SassScript contained in '#{}' with the parsed value. *
SassNode::isa public static function * Returns a value indicating if the token represents this type of node. * 7
SassNode::isChildOf public function * Returns a value indicating if this node is a child of the passed node. * This just checks the levels of the nodes. If this node is at a greater * level than the passed node if is a child of it. *
SassNode::parseChildren protected function * Parse the children of the node. *
SassNode::__clone public function * Resets children when cloned *
SassNode::__get public function * Getter. *
SassNode::__set public function * Setter. *