Add some docs.
[hs-java.git] / JVM / ClassFile.hs
index 6171c1bdecffd3854bc85f5c1c7259dc63cc2f52..343d956d2c6bf0e9c32b1be822af194b2a9fd2bb 100644 (file)
@@ -5,6 +5,7 @@ module JVM.ClassFile
   (-- * About
    -- $about
    --
+   --
    -- * Internal class file structures
    Attribute (..),
    FieldType (..),
@@ -25,6 +26,7 @@ module JVM.ClassFile
    NameType (..),
    fieldNameType, methodNameType,
    lookupField, lookupMethod,
+   long,
    toString,
    className,
    apsize, arsize, arlist
@@ -459,6 +461,7 @@ whileJust m = do
               return (x: next)
     Nothing -> return []
 
+long :: Constant stage -> Bool
 long (CLong _)   = True
 long (CDouble _) = True
 long _           = False