@@ -83,7 +83,7 @@ type instance RuleResult GetKnownTargets = KnownTargets
83
83
type instance RuleResult GenerateCore = ModGuts
84
84
85
85
data GenerateCore = GenerateCore
86
- deriving (Eq , Show , Typeable , Generic )
86
+ deriving (Eq , Show , Generic )
87
87
instance Hashable GenerateCore
88
88
instance NFData GenerateCore
89
89
@@ -103,12 +103,12 @@ instance NFData LinkableResult where
103
103
rnf = rwhnf
104
104
105
105
data GetLinkable = GetLinkable
106
- deriving (Eq , Show , Typeable , Generic )
106
+ deriving (Eq , Show , Generic )
107
107
instance Hashable GetLinkable
108
108
instance NFData GetLinkable
109
109
110
110
data GetImportMap = GetImportMap
111
- deriving (Eq , Show , Typeable , Generic )
111
+ deriving (Eq , Show , Generic )
112
112
instance Hashable GetImportMap
113
113
instance NFData GetImportMap
114
114
@@ -334,13 +334,13 @@ instance Hashable GetFileContents
334
334
instance NFData GetFileContents
335
335
336
336
data GetFileExists = GetFileExists
337
- deriving (Eq , Show , Typeable , Generic )
337
+ deriving (Eq , Show , Generic )
338
338
339
339
instance NFData GetFileExists
340
340
instance Hashable GetFileExists
341
341
342
342
data GetFileHash = GetFileHash
343
- deriving (Eq , Show , Typeable , Generic )
343
+ deriving (Eq , Show , Generic )
344
344
345
345
instance NFData GetFileHash
346
346
instance Hashable GetFileHash
@@ -349,15 +349,15 @@ data FileOfInterestStatus
349
349
= OnDisk
350
350
| Modified { firstOpen :: ! Bool -- ^ was this file just opened
351
351
}
352
- deriving (Eq , Show , Typeable , Generic )
352
+ deriving (Eq , Show , Generic )
353
353
instance Hashable FileOfInterestStatus
354
354
instance NFData FileOfInterestStatus
355
355
356
356
instance Pretty FileOfInterestStatus where
357
357
pretty = viaShow
358
358
359
359
data IsFileOfInterestResult = NotFOI | IsFOI FileOfInterestStatus
360
- deriving (Eq , Show , Typeable , Generic )
360
+ deriving (Eq , Show , Generic )
361
361
instance Hashable IsFileOfInterestResult
362
362
instance NFData IsFileOfInterestResult
363
363
@@ -389,60 +389,60 @@ type instance RuleResult GetModSummary = ModSummaryResult
389
389
type instance RuleResult GetModSummaryWithoutTimestamps = ModSummaryResult
390
390
391
391
data GetParsedModule = GetParsedModule
392
- deriving (Eq , Show , Typeable , Generic )
392
+ deriving (Eq , Show , Generic )
393
393
instance Hashable GetParsedModule
394
394
instance NFData GetParsedModule
395
395
396
396
data GetParsedModuleWithComments = GetParsedModuleWithComments
397
- deriving (Eq , Show , Typeable , Generic )
397
+ deriving (Eq , Show , Generic )
398
398
instance Hashable GetParsedModuleWithComments
399
399
instance NFData GetParsedModuleWithComments
400
400
401
401
data GetLocatedImports = GetLocatedImports
402
- deriving (Eq , Show , Typeable , Generic )
402
+ deriving (Eq , Show , Generic )
403
403
instance Hashable GetLocatedImports
404
404
instance NFData GetLocatedImports
405
405
406
406
-- | Does this module need to be compiled?
407
407
type instance RuleResult NeedsCompilation = Maybe LinkableType
408
408
409
409
data NeedsCompilation = NeedsCompilation
410
- deriving (Eq , Show , Typeable , Generic )
410
+ deriving (Eq , Show , Generic )
411
411
instance Hashable NeedsCompilation
412
412
instance NFData NeedsCompilation
413
413
414
414
data GetModuleGraph = GetModuleGraph
415
- deriving (Eq , Show , Typeable , Generic )
415
+ deriving (Eq , Show , Generic )
416
416
instance Hashable GetModuleGraph
417
417
instance NFData GetModuleGraph
418
418
419
419
data ReportImportCycles = ReportImportCycles
420
- deriving (Eq , Show , Typeable , Generic )
420
+ deriving (Eq , Show , Generic )
421
421
instance Hashable ReportImportCycles
422
422
instance NFData ReportImportCycles
423
423
424
424
data TypeCheck = TypeCheck
425
- deriving (Eq , Show , Typeable , Generic )
425
+ deriving (Eq , Show , Generic )
426
426
instance Hashable TypeCheck
427
427
instance NFData TypeCheck
428
428
429
429
data GetDocMap = GetDocMap
430
- deriving (Eq , Show , Typeable , Generic )
430
+ deriving (Eq , Show , Generic )
431
431
instance Hashable GetDocMap
432
432
instance NFData GetDocMap
433
433
434
434
data GetHieAst = GetHieAst
435
- deriving (Eq , Show , Typeable , Generic )
435
+ deriving (Eq , Show , Generic )
436
436
instance Hashable GetHieAst
437
437
instance NFData GetHieAst
438
438
439
439
data GetBindings = GetBindings
440
- deriving (Eq , Show , Typeable , Generic )
440
+ deriving (Eq , Show , Generic )
441
441
instance Hashable GetBindings
442
442
instance NFData GetBindings
443
443
444
444
data GhcSession = GhcSession
445
- deriving (Eq , Show , Typeable , Generic )
445
+ deriving (Eq , Show , Generic )
446
446
instance Hashable GhcSession
447
447
instance NFData GhcSession
448
448
@@ -451,7 +451,7 @@ newtype GhcSessionDeps = GhcSessionDeps_
451
451
-- Required for interactive evaluation, but leads to more cache invalidations
452
452
fullModSummary :: Bool
453
453
}
454
- deriving newtype (Eq , Typeable , Hashable , NFData )
454
+ deriving newtype (Eq , Hashable , NFData )
455
455
456
456
instance Show GhcSessionDeps where
457
457
show (GhcSessionDeps_ False ) = " GhcSessionDeps"
@@ -461,45 +461,45 @@ pattern GhcSessionDeps :: GhcSessionDeps
461
461
pattern GhcSessionDeps = GhcSessionDeps_ False
462
462
463
463
data GetModIfaceFromDisk = GetModIfaceFromDisk
464
- deriving (Eq , Show , Typeable , Generic )
464
+ deriving (Eq , Show , Generic )
465
465
instance Hashable GetModIfaceFromDisk
466
466
instance NFData GetModIfaceFromDisk
467
467
468
468
data GetModIfaceFromDiskAndIndex = GetModIfaceFromDiskAndIndex
469
- deriving (Eq , Show , Typeable , Generic )
469
+ deriving (Eq , Show , Generic )
470
470
instance Hashable GetModIfaceFromDiskAndIndex
471
471
instance NFData GetModIfaceFromDiskAndIndex
472
472
473
473
data GetModIface = GetModIface
474
- deriving (Eq , Show , Typeable , Generic )
474
+ deriving (Eq , Show , Generic )
475
475
instance Hashable GetModIface
476
476
instance NFData GetModIface
477
477
478
478
data IsFileOfInterest = IsFileOfInterest
479
- deriving (Eq , Show , Typeable , Generic )
479
+ deriving (Eq , Show , Generic )
480
480
instance Hashable IsFileOfInterest
481
481
instance NFData IsFileOfInterest
482
482
483
483
data GetModSummaryWithoutTimestamps = GetModSummaryWithoutTimestamps
484
- deriving (Eq , Show , Typeable , Generic )
484
+ deriving (Eq , Show , Generic )
485
485
instance Hashable GetModSummaryWithoutTimestamps
486
486
instance NFData GetModSummaryWithoutTimestamps
487
487
488
488
data GetModSummary = GetModSummary
489
- deriving (Eq , Show , Typeable , Generic )
489
+ deriving (Eq , Show , Generic )
490
490
instance Hashable GetModSummary
491
491
instance NFData GetModSummary
492
492
493
493
-- See Note [Client configuration in Rules]
494
494
-- | Get the client config stored in the ide state
495
495
data GetClientSettings = GetClientSettings
496
- deriving (Eq , Show , Typeable , Generic )
496
+ deriving (Eq , Show , Generic )
497
497
instance Hashable GetClientSettings
498
498
instance NFData GetClientSettings
499
499
500
500
type instance RuleResult GetClientSettings = Hashed (Maybe Value )
501
501
502
- data AddWatchedFile = AddWatchedFile deriving (Eq , Show , Typeable , Generic )
502
+ data AddWatchedFile = AddWatchedFile deriving (Eq , Show , Generic )
503
503
instance Hashable AddWatchedFile
504
504
instance NFData AddWatchedFile
505
505
@@ -519,7 +519,7 @@ data IdeGhcSession = IdeGhcSession
519
519
instance Show IdeGhcSession where show _ = " IdeGhcSession"
520
520
instance NFData IdeGhcSession where rnf ! _ = ()
521
521
522
- data GhcSessionIO = GhcSessionIO deriving (Eq , Show , Typeable , Generic )
522
+ data GhcSessionIO = GhcSessionIO deriving (Eq , Show , Generic )
523
523
instance Hashable GhcSessionIO
524
524
instance NFData GhcSessionIO
525
525
0 commit comments