public function SassLiteral::op_bw_or in Sassy 7
Same name and namespace in other branches
- 7.3 phpsass/script/literals/SassLiteral.php \SassLiteral::op_bw_or()
* Bitwise OR the value of other and this value *
Parameters
SassNumber value to bitwise OR with: * @return string result * @throws Exception if bitwise OR not supported for the data type
1 method overrides SassLiteral::op_bw_or()
- SassColour::op_bw_or in phamlp/
sass/ script/ literals/ SassColour.php - * Colour bitwise OR *
File
- phamlp/
sass/ script/ literals/ SassLiteral.php, line 161
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_bw_or($other) {
throw new SassLiteralException('{class} does not support {operation}.', array(
'{class}' => get_class($this),
'{operation}' => Phamlp::t('sass', 'Bitwise OR'),
), SassScriptParser::$context->node);
}