Changed ZEND_JMP_SET and ZEND_DECLARE_LAMBDA_FUNCTION to use links and added skeleton sections.

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@323536 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Justin Martin 2012-02-25 20:22:48 +00:00
parent 7f419197ec
commit 24e5bc25ea

View file

@ -279,8 +279,8 @@
<entry>149</entry><entry><xref linkend="internals2.opcodes.handle-exception"/></entry><entry>yes</entry>
</row>
<row><entry>150</entry><entry><xref linkend="internals2.opcodes.user-opcode"/></entry><entry>no</entry></row>
<row><entry>152</entry><entry>ZEND_JMP_SET</entry><entry>no</entry></row>
<row><entry>153</entry><entry>ZEND_DECLARE_LAMBDA_FUNCTION</entry><entry>no</entry></row>
<row><entry>152</entry><entry><xref linkend="internals2.opcodes.zend-jmp-set"/></entry><entry>no</entry></row>
<row><entry>153</entry><entry><xref linkend="internals2.opcodes.zend-declare-lambda-function"/></entry><entry>no</entry></row>
</tbody>
</tgroup>
</table>
@ -9338,6 +9338,38 @@ unset($$a);
* opcode number: 146
* No sample PHP yet */
?>
]]>
</programlisting>
</section>
</section>
<section xml:id="internals2.opcodes.zend-jmp-set">
<title>CONT</title>
<section xml:id="internals2.opcodes.zend-jmp-set.code">
<title>PHP code</title>
<programlisting role="php">
<![CDATA[
<?php
/*
*
* opcode number: 152
* No sample PHP yet */
?>
]]>
</programlisting>
</section>
</section>
<section xml:id="internals2.opcodes.zend-declare-lambda-function">
<title>CONT</title>
<section xml:id="internals2.opcodes.zend-declare-lambda-function.code">
<title>PHP code</title>
<programlisting role="php">
<![CDATA[
<?php
/*
*
* opcode number: 153
* No sample PHP yet */
?>
]]>
</programlisting>
</section>