You are here

public static property SassLiteral::$typeOf in Sassy 7.3

Same name and namespace in other branches
  1. 7 phamlp/sass/script/literals/SassLiteral.php \SassLiteral::typeOf

Type: array maps class names to data types

File

phpsass/script/literals/SassLiteral.php, line 26

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 static $typeOf = array(
  'SassBoolean' => 'bool',
  'SassColour' => 'color',
  'SassNumber' => 'number',
  'SassString' => 'string',
);