Java 类org.objectweb.asm.attrs.StackMapTableAttribute 实例源码

项目:javify    文件:ASMStackMapTableAttribute.java   
protected Attribute read(
    ClassReader cr,
    int off,
    int len,
    char[] buf,
    int codeOff,
    Label[] labels)
{
    StackMapTableAttribute attr = (StackMapTableAttribute) super.read(cr,
            off,
            len,
            buf,
            codeOff,
            labels);

    return new ASMStackMapTableAttribute(attr.getFrames(), len);
}
项目:jvm-stm    文件:ASMStackMapTableAttribute.java   
protected Attribute read(
    ClassReader cr,
    int off,
    int len,
    char[] buf,
    int codeOff,
    Label[] labels)
{
    StackMapTableAttribute attr = (StackMapTableAttribute) super.read(cr,
            off,
            len,
            buf,
            codeOff,
            labels);

    return new ASMStackMapTableAttribute(attr.getFrames(), len);
}
项目:annotation-tools    文件:ASMStackMapTableAttribute.java   
protected Attribute read(
    ClassReader cr,
    int off,
    int len,
    char[] buf,
    int codeOff,
    Label[] labels)
{
    StackMapTableAttribute attr = (StackMapTableAttribute) super.read(cr,
            off,
            len,
            buf,
            codeOff,
            labels);

    return new ASMStackMapTableAttribute(attr.getFrames(), len);
}
项目:JamVM-PH    文件:ASMStackMapTableAttribute.java   
protected Attribute read(
    ClassReader cr,
    int off,
    int len,
    char[] buf,
    int codeOff,
    Label[] labels)
{
    StackMapTableAttribute attr = (StackMapTableAttribute) super.read(cr,
            off,
            len,
            buf,
            codeOff,
            labels);

    return new ASMStackMapTableAttribute(attr.getFrames(), len);
}
项目:classpath    文件:ASMStackMapTableAttribute.java   
protected Attribute read(
    ClassReader cr,
    int off,
    int len,
    char[] buf,
    int codeOff,
    Label[] labels)
{
    StackMapTableAttribute attr = (StackMapTableAttribute) super.read(cr,
            off,
            len,
            buf,
            codeOff,
            labels);

    return new ASMStackMapTableAttribute(attr.getFrames(), len);
}