PATH:
home
/
sarkas88.com
/
public_html
/
wp-content
/
plugins
/
amp
/
vendor
/
sabberworm
/
php-css-parser
/
src
/
Value
<?php namespace Sabberworm\CSS\Value; use Sabberworm\CSS\OutputFormat; use Sabberworm\CSS\Parsing\ParserState; /** * An `Expression` represents a special kind of value that is comprised of multiple components wrapped in parenthesis. * Examle `height: (vh - 10);`. */ class Expression extends CSSFunction { /** * @param ParserState $oParserState * @param bool $bIgnoreCase * * @return Expression * * @throws SourceException * @throws UnexpectedEOFException * @throws UnexpectedTokenException */ public static function parse(ParserState $oParserState, $bIgnoreCase = false) { $oParserState->consume('('); $aArguments = self::parseArgs($oParserState); $mResult = new Expression("", $aArguments, ',', $oParserState->currentLine()); $oParserState->consume(')'); return $mResult; } }
[-] PrimitiveValue.php
[open]
[-] Value.php
[open]
[-] Expression.php
[open]
[-] CSSString.php
[open]
[-] URL.php
[open]
[-] RuleValueList.php
[open]
[-] ValueList.php
[open]
[-] CSSFunction.php
[open]
[-] LineName.php
[open]
[-] Size.php
[open]
[-] Color.php
[open]
[-] CalcFunction.php
[open]
[+]
..
[-] Reader.php
[open]
[-] .ptr
[open]
[-] CalcRuleValueList.php
[open]