darcs-2.12.2: a distributed, interactive, smart revision control system

Safe HaskellNone
LanguageHaskell2010

Darcs.Patch.Debug

Synopsis

Documentation

class PatchDebug p where Source #

PatchDebug is a hook class for temporarily adding debug information. To use it, add any methods that are required, implement those methods where needed, and then make it available in the relevant contexts. For example it can be temporarily added as a superclass of Patchy. The advantage of having it here already is that everything is (or should be) declared as an instance of it, so you can use defaulting or just leave out declarations of instance methods and code will still compile.

Methods

patchDebugDummy :: p wX wY -> () Source #

A dummy method so we can export/import PatchDebug(..) without triggering warnings

Instances

PatchDebug Prim Source # 

Methods

patchDebugDummy :: Prim wX wY -> () Source #

PatchDebug DummyPatch Source # 

Methods

patchDebugDummy :: DummyPatch wX wY -> () Source #

PatchDebug p => PatchDebug (RL p) Source # 

Methods

patchDebugDummy :: RL p wX wY -> () Source #

PatchDebug p => PatchDebug (FL p) Source # 

Methods

patchDebugDummy :: FL p wX wY -> () Source #

PatchDebug prim => PatchDebug (RepoPatchV1 prim) Source # 

Methods

patchDebugDummy :: RepoPatchV1 prim wX wY -> () Source #

PatchDebug p => PatchDebug (Named p) Source # 

Methods

patchDebugDummy :: Named p wX wY -> () Source #

PatchDebug prim => PatchDebug (RepoPatchV2 prim) Source # 

Methods

patchDebugDummy :: RepoPatchV2 prim wX wY -> () Source #

PatchDebug p => PatchDebug (RebaseChange p) Source # 

Methods

patchDebugDummy :: RebaseChange p wX wY -> () Source #

PatchDebug p => PatchDebug (RebaseSelect p) Source # 

Methods

patchDebugDummy :: RebaseSelect p wX wY -> () Source #

PatchDebug p => PatchDebug (PatchInfoAnd rt p) Source # 

Methods

patchDebugDummy :: PatchInfoAnd rt p wX wY -> () Source #