1
1
mirror of https://github.com/github/semantic.git synced 2024-12-26 08:25:19 +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 module Diff where
import Syntax import Syntax

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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