You are here

public function SassScriptParser::__construct in Sassy 7

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

* SassScriptParser constructor. *

Return value

SassScriptParser

File

phamlp/sass/script/SassScriptParser.php, line 42

Class

SassScriptParser
SassScriptParser class. Parses SassScript. SassScript is lexed into {@link http://en.wikipedia.org/wiki/Reverse_Polish_notation Reverse Polish notation} by the SassScriptLexer and the calculated result returned. @package PHamlP @subpackage Sass.script

Code

public function __construct() {
  $this->lexer = new SassScriptLexer($this);
}