Neos\Eel\AbstractParser::match_S PHP Метод

match_S() публичный Метод

public match_S ( $stack = [] )
    function match_S($stack = array())
    {
        $matchrule = "S";
        $result = $this->construct($matchrule, $matchrule, null);
        if (($subres = $this->rx('/ \\s* /')) !== FALSE) {
            $result["text"] .= $subres;
            return $this->finalise($result);
        } else {
            return FALSE;
        }
    }