Skip to content

Commit 309f8d9

Browse files
committed
[Sync EN] [PHP 8.5] Add new tokens, T_VOID_CAST T_PIPE
Fixes #603
1 parent ca3109a commit 309f8d9

1 file changed

Lines changed: 19 additions & 1 deletion

File tree

appendices/tokens.xml

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<!-- EN-Revision: 5208882ce3910d599e339209f967e183b49ba6ef Maintainer: lacatoire Status: ready -->
2+
<!-- EN-Revision: 5f720ab2b9c8122d1a127684748712fc57a24d06 Maintainer: lacatoire Status: ready -->
33
<!-- Reviewed: no -->
44
<appendix xml:id="tokens" xmlns="http://docbook.org/ns/docbook">
55
<title>Lista de tokens del analizador</title>
@@ -995,6 +995,16 @@ defined('T_FN') || define('T_FN', 10001);
995995
<entry><link linkend="language.oop5.paamayim-nekudotayim">resolución de ámbito</link>. Definido también
996996
como <constant>T_DOUBLE_COLON</constant>.</entry>
997997
</row>
998+
<row xml:id="constant.t-pipe">
999+
<entry>
1000+
<constant>T_PIPE</constant>
1001+
(<type>int</type>)
1002+
</entry>
1003+
<entry>|></entry>
1004+
<entry>
1005+
<link linkend="language.operators.functional">operadores funcionales</link> (disponible a partir de PHP 8.5.0)
1006+
</entry>
1007+
</row>
9981008
<row xml:id="constant.t-plus-equal">
9991009
<entry>
10001010
<constant>T_PLUS_EQUAL</constant>
@@ -1297,6 +1307,14 @@ defined('T_FN') || define('T_FN', 10001);
12971307
<entry>$foo</entry>
12981308
<entry><link linkend="language.variables">variables</link></entry>
12991309
</row>
1310+
<row xml:id="constant.t-void-cast">
1311+
<entry>
1312+
<constant>T_VOID_CAST</constant>
1313+
(<type>int</type>)
1314+
</entry>
1315+
<entry>(void)</entry>
1316+
<entry><link linkend="language.types.void">moldeado a void</link> (disponible a partir de PHP 8.5.0)</entry>
1317+
</row>
13001318
<row xml:id="constant.t-while">
13011319
<entry>
13021320
<constant>T_WHILE</constant>

0 commit comments

Comments
 (0)