docs:修复 int32 出错的注释

This commit is contained in:
Luke 2025-06-25 16:14:51 +08:00
parent 70189d1b80
commit 4883cd91e7
7 changed files with 13 additions and 13 deletions

View File

@ -1,7 +1,7 @@
function: main
return_type: int
body:
declare res: boolean = 8b == 7b
declare res: boolean = 8L > 7L
if res then
return 131
end if

View File

@ -12,8 +12,8 @@ import org.jcnc.snow.vm.module.OperandStack;
*
* <p>Specific behavior:</p>
* <ul>
* <li>Pops two integers from the virtual machine stack.</li>
* <li>If the two integers are equal, jumps to the target command.</li>
* <li>Pops two int32 from the virtual machine stack.</li>
* <li>If the two int32 are equal, jumps to the target command.</li>
* <li>Otherwise, the program continues with the next command.</li>
* </ul>
*/

View File

@ -12,8 +12,8 @@ import org.jcnc.snow.vm.module.OperandStack;
*
* <p>Specific behavior:</p>
* <ul>
* <li>Pops two integers from the virtual machine stack.</li>
* <li>If the first integer is greater than the second, jumps to the target command.</li>
* <li>Pops two int32 from the virtual machine stack.</li>
* <li>If the first int32 is greater than the second, jumps to the target command.</li>
* <li>Otherwise, the program continues with the next command.</li>
* </ul>
*/

View File

@ -12,8 +12,8 @@ import org.jcnc.snow.vm.module.OperandStack;
*
* <p>Specific behavior:</p>
* <ul>
* <li>Pops two integers from the virtual machine stack.</li>
* <li>If the first integer is greater than or equal to the second, jumps to the target command.</li>
* <li>Pops two int32 from the virtual machine stack.</li>
* <li>If the first int32 is greater than or equal to the second, jumps to the target command.</li>
* <li>Otherwise, the program continues with the next command.</li>
* </ul>
*/

View File

@ -12,8 +12,8 @@ import org.jcnc.snow.vm.module.OperandStack;
*
* <p>Specific behavior:</p>
* <ul>
* <li>Pops two integers from the virtual machine stack.</li>
* <li>If the first integer is less than the second, jumps to the target command.</li>
* <li>Pops two int32 from the virtual machine stack.</li>
* <li>If the first int32 is less than the second, jumps to the target command.</li>
* <li>Otherwise, the program continues with the next command.</li>
* </ul>
*/

View File

@ -12,8 +12,8 @@ import org.jcnc.snow.vm.module.OperandStack;
*
* <p>Specific behavior:</p>
* <ul>
* <li>Pops two integers from the virtual machine stack.</li>
* <li>If the first integer is less than or equal to the second, jumps to the target command.</li>
* <li>Pops two int32 from the virtual machine stack.</li>
* <li>If the first int32 is less than or equal to the second, jumps to the target command.</li>
* <li>Otherwise, the program continues with the next command.</li>
* </ul>
*/

View File

@ -12,8 +12,8 @@ import org.jcnc.snow.vm.module.OperandStack;
*
* <p>Specific behavior:</p>
* <ul>
* <li>Pops two integers from the virtual machine stack.</li>
* <li>If the two integers are not equal, jumps to the target command.</li>
* <li>Pops two int32 from the virtual machine stack.</li>
* <li>If the two int32 are not equal, jumps to the target command.</li>
* <li>Otherwise, the program continues with the next command.</li>
* </ul>
*/