public function SassLiteral::addChild in Sassy 7.3
Same name and namespace in other branches
- 7 phamlp/sass/script/literals/SassLiteral.php \SassLiteral::addChild()
Adds a child object to this.
Parameters
sassLiteral the child object:
File
- phpsass/
script/ literals/ SassLiteral.php, line 95
Class
- SassLiteral
- SassLiteral class. Base class for all Sass literals. Sass data types are extended from this class and these override the operation methods to provide the appropriate semantics. @package PHamlP @subpackage Sass.script.literals
Code
public function addChild($sassLiteral) {
$this->children[] = $sassLiteral;
}