public function SassLiteral::op_shiftl in Sassy 7.3
Same name and namespace in other branches
- 7 phamlp/sass/script/literals/SassLiteral.php \SassLiteral::op_shiftl()
Shifts the value of this left by the number of bits given in value
Parameters
SassNumber amount to shift left by:
Return value
string result
Throws
Exception if bitwise Shift Left not supported for the data type
1 method overrides SassLiteral::op_shiftl()
- SassColour::op_shiftl in phpsass/
script/ literals/ SassColour.php - Colour bitwise Shift Left
File
- phpsass/
script/ literals/ SassLiteral.php, line 191
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_shiftl($other) {
throw new SassLiteralException(get_class($this) . ' does not support Bitwise Shift Left', SassScriptParser::$context->node);
}