mirror of
https://github.com/i-net-software/JWebAssembly.git
synced 2025-03-15 10:44:47 +01:00
add isAbstract()
This commit is contained in:
parent
d73612715f
commit
16f49f3078
@ -101,6 +101,15 @@ public class MethodInfo implements Member {
|
||||
return (accessFlags & 0x0008) > 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* If the method is abstract
|
||||
*
|
||||
* @return true, if abstract
|
||||
*/
|
||||
public boolean isAbstract() {
|
||||
return (accessFlags & 0x0400) > 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return the name
|
||||
*/
|
||||
|
Loading…
x
Reference in New Issue
Block a user