Movatterモバイル変換
[0]ホーム
-- |-- Module : GHC.StaticPtr-- Copyright : (C) 2016 I/O Tweag-- License : see libraries/base/LICENSE---- Maintainer : cvs-ghc@haskell.org-- Stability : internal-- Portability : non-portable (GHC Extensions)---- Internal definitions needed for compiling static forms.---- By omitting interface pragmas, we drop the strictness annotations-- which otherwise would bias GHC to conclude that any code using-- the static form would fail.{-# OPTIONS_GHC -fomit-interface-pragmas #-}moduleGHC.StaticPtr.Internal(makeStatic)whereimportGHC.StaticPtr(StaticPtr)-- 'makeStatic' should never be called by the user.-- See Note [Grand plan for static forms] in StaticPtrTable.makeStatic::(Int,Int)->a->StaticPtramakeStatic(line,col)_=error$"GHC bug - makeStatic: Unresolved static form at line "++showline++", column "++showcol++"."
[8]ページ先頭