mirror of
https://github.com/i-net-software/JWebAssembly.git
synced 2025-03-14 18:43:27 +01:00
fix JavaDoc
This commit is contained in:
parent
ecd61dcde7
commit
e6093fa495
@ -1,5 +1,5 @@
|
||||
/*
|
||||
Copyright 2011 - 2017 Volker Berlin (i-net software)
|
||||
Copyright 2011 - 2018 Volker Berlin (i-net software)
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
@ -165,7 +165,7 @@ public class ClassFile {
|
||||
* The access flags of the class.
|
||||
* http://docs.oracle.com/javase/specs/jvms/se7/html/jvms-4.html#jvms-4.1-200-E
|
||||
* http://docs.oracle.com/javase/specs/jvms/se5.0/html/ClassFile.doc.html#23242
|
||||
* @see #isInterface()
|
||||
* @see java.lang.Class#isInterface()
|
||||
*/
|
||||
public int getAccessFlags() {
|
||||
return accessFlags;
|
||||
|
@ -149,10 +149,10 @@ public class Code {
|
||||
|
||||
/**
|
||||
* Check if the code only contains the default constructor code:
|
||||
* <code><pre>
|
||||
* <pre><code>
|
||||
* super.<init>;
|
||||
* return;
|
||||
* </pre></code>
|
||||
* </code></pre>
|
||||
* In this case the constructor will not be printed
|
||||
* @param superClass
|
||||
* @return
|
||||
|
@ -35,7 +35,7 @@ interface InstructionOpcodes {
|
||||
|
||||
/**
|
||||
* If the value on the stack is true then the if block is executed. <br>
|
||||
* sequence: IF <return type> <br>
|
||||
* sequence: IF {return type} <br>
|
||||
* return type: can be void (0x40) <br>
|
||||
* stack: remove one i32 value and compare it with 0 <br>
|
||||
*/
|
||||
@ -47,7 +47,7 @@ interface InstructionOpcodes {
|
||||
|
||||
/**
|
||||
* Break a block/loop <br>
|
||||
* sequence: BR <call deep> <br>
|
||||
* sequence: BR {call deep} <br>
|
||||
* call deep: How many blocks are break. 0 means the current block<br>
|
||||
* stack: no change <br>
|
||||
*/
|
||||
|
Loading…
x
Reference in New Issue
Block a user