forgot changes in the serialization in the Haskell runtime

This commit is contained in:
krasimir
2015-06-17 12:58:46 +00:00
parent e352742b8c
commit 2f2f459a89
2 changed files with 9 additions and 9 deletions

View File

@@ -61,11 +61,11 @@ data Symbol
| SymKS Token
| SymKP [Symbol] [([Symbol],[String])]
| SymBIND -- the special BIND token
| SymNE -- non exist
| SymSOFT_BIND -- the special SOFT_BIND token
| SymSOFT_SPACE -- the special SOFT_SPACE token
| SymCAPIT -- the special CAPIT token
| SymALL_CAPIT -- the special ALL_CAPIT token
| SymNE -- non exist (this should be last constructor to simplify the binary search in the runtime)
deriving (Eq,Ord,Show)
data Production
= PApply {-# UNPACK #-} !FunId [PArg]