forked from GitHub/gf-core
The def rules are now compiled to byte code by the compiler and then to native code by the JIT compiler in the runtime. Not all constructions are implemented yet. The partial implementation is now in the repository but it is not activated by default since this requires changes in the PGF format. I will enable it only after it is complete.
20 lines
563 B
Haskell
20 lines
563 B
Haskell
{-# OPTIONS_HADDOCK hide #-}
|
|
-------------------------------------------------
|
|
-- |
|
|
-- Stability : unstable
|
|
--
|
|
-------------------------------------------------
|
|
module PGF.Internal(module Internal) where
|
|
import PGF.Binary as Internal
|
|
import PGF.Data as Internal
|
|
import PGF.Macros as Internal
|
|
import PGF.Optimize as Internal
|
|
import PGF.Printer as Internal
|
|
import PGF.Utilities as Internal
|
|
import PGF.ByteCode as Internal
|
|
|
|
import Data.Binary as Internal
|
|
import Data.Binary.Get as Internal
|
|
import Data.Binary.IEEE754 as Internal
|
|
import Data.Binary.Put as Internal
|