You are here

public function SassLiteral::op_shiftr in Sassy 7

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

* Shifts the value of this right by the number of bits given in value *

Parameters

SassNumber amount to shift right by: * @return string result * @throws Exception if bitwise Shift Right not supported for the data type

1 method overrides SassLiteral::op_shiftr()
SassColour::op_shiftr in phamlp/sass/script/literals/SassColour.php
* Colour bitwise Shift Right *

File

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

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 function op_shiftr($other) {
  throw new SassLiteralException('{class} does not support {operation}.', array(
    '{class}' => get_class($this),
    '{operation}' => Phamlp::t('sass', 'Bitwise Shift Right'),
  ), SassScriptParser::$context->node);
}