You are here

protected function SassLiteral::getTypeOf in Sassy 7

Same name and namespace in other branches
  1. 7.3 phpsass/script/literals/SassLiteral.php \SassLiteral::getTypeOf()

* Returns the type of this *

Return value

string the type of this

1 method overrides SassLiteral::getTypeOf()
CompassList::getTypeOf in phamlp/sass/extensions/compass/functions/colourStops.php
* Returns the type of this *

File

phamlp/sass/script/literals/SassLiteral.php, line 79

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

protected function getTypeOf() {
  return self::$typeOf[get_class($this)];
}