1
1
mirror of https://github.com/github/semantic.git synced 2024-12-25 07:55:12 +03:00

Revert "Derive Functor, Foldable, and Traversable using pragmas."

This reverts commit 949f9cab01bc57b892e8b33dc244846c7cf05004.
This commit is contained in:
Rob Rix 2016-01-04 12:05:08 -05:00
parent 1d6e5f41d8
commit 423858ef41
8 changed files with 2 additions and 8 deletions

View File

@ -1,4 +1,3 @@
{-# LANGUAGE DeriveFunctor, DeriveFoldable #-}
module Diff where
import Syntax

View File

@ -1,4 +1,4 @@
{-# LANGUAGE DeriveFunctor, DeriveFoldable, FlexibleInstances #-}
{-# LANGUAGE FlexibleInstances #-}
module Line where
import qualified Data.Foldable as Foldable

View File

@ -1,4 +1,3 @@
{-# LANGUAGE DeriveFunctor #-}
module Operation where
import Diff

View File

@ -1,4 +1,3 @@
{-# LANGUAGE DeriveFunctor, DeriveFoldable, DeriveTraversable #-}
module OrderedMap (
OrderedMap
, fromList

View File

@ -1,4 +1,3 @@
{-# LANGUAGE DeriveFunctor #-}
module Patch where
data Patch a =

View File

@ -1,4 +1,3 @@
{-# LANGUAGE DeriveFunctor #-}
module Row where
import Line

View File

@ -1,4 +1,4 @@
{-# LANGUAGE DeriveFunctor, DeriveFoldable, DeriveTraversable #-}
module Source where
import Range

View File

@ -1,4 +1,3 @@
{-# LANGUAGE DeriveFunctor, DeriveFoldable, DeriveTraversable #-}
module Syntax where
import OrderedMap