docs:修复 int32 出错的注释
This commit is contained in:
parent
70189d1b80
commit
4883cd91e7
@ -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
|
||||
|
||||
@ -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>
|
||||
*/
|
||||
|
||||
@ -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>
|
||||
*/
|
||||
|
||||
@ -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>
|
||||
*/
|
||||
|
||||
@ -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>
|
||||
*/
|
||||
|
||||
@ -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>
|
||||
*/
|
||||
|
||||
@ -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>
|
||||
*/
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user