doc: everything
This commit is contained in:
parent
e30e3b02e1
commit
f85f3f8b79
23 changed files with 227 additions and 77 deletions
|
@ -1,3 +1,5 @@
|
|||
-- | Interface List.
|
||||
|
||||
{-# LANGUAGE DeriveGeneric #-}
|
||||
{-# LANGUAGE DerivingVia #-}
|
||||
module Language.Java.Classfile.Interfaces (Interfaces(..)) where
|
||||
|
@ -7,6 +9,8 @@ import Language.Java.Classfile.ConstantPool.References (ClassReference)
|
|||
import Language.Java.Classfile.Extractable (Extractable)
|
||||
import GHC.Generics ( Generic, Generically, Generically(..) )
|
||||
|
||||
-- | A list of classes something implements.
|
||||
|
||||
newtype Interfaces = Interfaces (Array Word16 ClassReference)
|
||||
deriving stock (Show, Generic)
|
||||
deriving Extractable via Generically Interfaces
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue