feat: Generic Boundedness, this was something I tried

This commit is contained in:
vegowotenks 2025-07-12 00:19:40 +02:00
parent 0f44368c35
commit 7826aa880e
3 changed files with 11 additions and 2 deletions

View file

@ -8,9 +8,10 @@ import Language.Java.Classfile.Extractable (Extractable)
import Language.Java.Classfile.ConstantPool (ConstantPool)
data Classfile = Classfile
{ magic :: Magic
, version :: Version
{ magic :: Magic
, version :: Version
, constantPool :: ConstantPool
, accessFlags :: AccessFlags
}
deriving stock (Show, Generic)
deriving Extractable via Generically Classfile