Java 类org.objectweb.asm.util.attrs.ASMStackMapAttribute 实例源码
项目:javify
文件:AbstractVisitor.java
/**
* Returns the default {@link ASMifiable} prototypes.
*
* @return the default {@link ASMifiable} prototypes.
*/
public static Attribute[] getDefaultAttributes() {
try {
return new Attribute[] {
new ASMStackMapAttribute(),
new ASMStackMapTableAttribute() };
} catch (Exception e) {
return new Attribute[0];
}
}
项目:jvm-stm
文件:AbstractVisitor.java
/**
* Returns the default {@link ASMifiable} prototypes.
*
* @return the default {@link ASMifiable} prototypes.
*/
public static Attribute[] getDefaultAttributes() {
try {
return new Attribute[] {
new ASMStackMapAttribute(),
new ASMStackMapTableAttribute() };
} catch (Exception e) {
return new Attribute[0];
}
}
项目:annotation-tools
文件:AbstractVisitor.java
/**
* Returns the default {@link ASMifiable} prototypes.
*
* @return the default {@link ASMifiable} prototypes.
*/
public static Attribute[] getDefaultAttributes() {
try {
return new Attribute[] {
new ASMStackMapAttribute(),
new ASMStackMapTableAttribute() };
} catch (Exception e) {
return new Attribute[0];
}
}
项目:JamVM-PH
文件:AbstractVisitor.java
/**
* Returns the default {@link ASMifiable} prototypes.
*
* @return the default {@link ASMifiable} prototypes.
*/
public static Attribute[] getDefaultAttributes() {
try {
return new Attribute[] {
new ASMStackMapAttribute(),
new ASMStackMapTableAttribute() };
} catch (Exception e) {
return new Attribute[0];
}
}
项目:classpath
文件:AbstractVisitor.java
/**
* Returns the default {@link ASMifiable} prototypes.
*
* @return the default {@link ASMifiable} prototypes.
*/
public static Attribute[] getDefaultAttributes() {
try {
return new Attribute[] {
new ASMStackMapAttribute(),
new ASMStackMapTableAttribute() };
} catch (Exception e) {
return new Attribute[0];
}
}