ILIAS
release_5-3 Revision v5.3.23-19-g915713cf615
◀ ilDoc Overview
BitwiseAnd.php
Go to the documentation of this file.
1
<?php
2
3
/*
4
* This file is part of Twig.
5
*
6
* (c) Fabien Potencier
7
* (c) Armin Ronacher
8
*
9
* For the full copyright and license information, please view the LICENSE
10
* file that was distributed with this source code.
11
*/
12
class
Twig_Node_Expression_Binary_BitwiseAnd
extends
Twig_Node_Expression_Binary
13
{
14
public
function
operator
(
Twig_Compiler
$compiler)
15
{
16
return
$compiler->
raw
(
'&'
);
17
}
18
}
19
20
class_alias(
'Twig_Node_Expression_Binary_BitwiseAnd'
,
'Twig\Node\Expression\Binary\BitwiseAndBinary'
,
false
);
Twig_Compiler\raw
raw($string)
Adds a raw string to the compiled code.
Definition:
Compiler.php:112
Twig_Node_Expression_Binary
Definition:
Binary.php:12
Twig_Node_Expression_Binary_BitwiseAnd\operator
operator(Twig_Compiler $compiler)
Definition:
BitwiseAnd.php:14
Twig_Compiler
Twig_Node_Expression_Binary_BitwiseAnd
Definition:
BitwiseAnd.php:12
libs
composer
vendor
twig
twig
lib
Twig
Node
Expression
Binary
BitwiseAnd.php
Generated on Sat Jan 18 2025 19:01:12 for ILIAS by
1.8.13 (using
Doxyfile
)