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 function: main
return_type: int return_type: int
body: body:
declare res: boolean = 8b == 7b declare res: boolean = 8L > 7L
if res then if res then
return 131 return 131
end if end if

View File

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

View File

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

View File

@ -12,8 +12,8 @@ import org.jcnc.snow.vm.module.OperandStack;
* *
* <p>Specific behavior:</p> * <p>Specific behavior:</p>
* <ul> * <ul>
* <li>Pops two integers from the virtual machine stack.</li> * <li>Pops two int32 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>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> * <li>Otherwise, the program continues with the next command.</li>
* </ul> * </ul>
*/ */

View File

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

View File

@ -12,8 +12,8 @@ import org.jcnc.snow.vm.module.OperandStack;
* *
* <p>Specific behavior:</p> * <p>Specific behavior:</p>
* <ul> * <ul>
* <li>Pops two integers from the virtual machine stack.</li> * <li>Pops two int32 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>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> * <li>Otherwise, the program continues with the next command.</li>
* </ul> * </ul>
*/ */

View File

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