diff options
Diffstat (limited to 'compiler/utils/Binary.hs')
-rw-r--r-- | compiler/utils/Binary.hs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/compiler/utils/Binary.hs b/compiler/utils/Binary.hs index f889a4c067..8f0d8e50dc 100644 --- a/compiler/utils/Binary.hs +++ b/compiler/utils/Binary.hs @@ -901,6 +901,15 @@ instance Binary WarningTxt where d <- get bh return (DeprecatedTxt s d) +instance Binary StringLiteral where + put_ bh (StringLiteral st fs) = do + put_ bh st + put_ bh fs + get bh = do + st <- get bh + fs <- get bh + return (StringLiteral st fs) + instance Binary a => Binary (GenLocated SrcSpan a) where put_ bh (L l x) = do put_ bh l |