Class StackMapAttribute

java.lang.Object
proguard.util.SimpleProcessable
proguard.classfile.attribute.Attribute
proguard.classfile.attribute.preverification.StackMapAttribute
All Implemented Interfaces:
Serializable, Processable

public class StackMapAttribute extends Attribute
This Attribute represents a stack map attribute.
See Also:
  • Field Details

    • u2stackMapFramesCount

      public int u2stackMapFramesCount
    • stackMapFrames

      public FullFrame[] stackMapFrames
  • Constructor Details

    • StackMapAttribute

      public StackMapAttribute()
      Creates an uninitialized ExceptionsAttribute.
    • StackMapAttribute

      public StackMapAttribute(FullFrame[] stackMapFrames)
      Creates a StackMapTableAttribute with the given stack map frames.
    • StackMapAttribute

      public StackMapAttribute(int stackMapFramesCount, FullFrame[] stackMapFrames)
      Creates a StackMapTableAttribute with the given stack map frames.
  • Method Details