ghc-plugs-out-2.0.0.0: Type checker plugins without the type checking.
Safe HaskellNone
LanguageHaskell2010

CallCount.Pure.Plugin1

Description

This module re-exports the call count plugin so that it is available from another module name. This enables setting up tests between plugins and their options when a module pulls in multiple plugins.

-- test-suites/counter-in-line-each/Main.hs
{--}
{--}
...
Building test suite 'test-in-line-each'
[1 of 1] Compiling Main
>>> B #1
>>> A #1
>>> B #2
>>> A #2
-- test-suites/counter-in-line/Main.hs
{--}
{--}
...
Building test suite 'test-in-line'
[1 of 1] Compiling Main
>>> AB #1
>>> AB #1
>>> AB #2
>>> AB #2
-- test-suites/counter-in-turn-each/Main.hs
{--}
{--}
{--}
{--}
...
Building test suite 'test-in-turn-each'
[1 of 1] Compiling Main
>>> B #1
>>> A #1
>>> B #2
>>> A #2
-- test-suites/counter-in-turn/Main.hs
{--}
{--}
{--}
{--}
...
Building test suite 'test-in-turn'
[1 of 1] Compiling Main
>>> AB #1
>>> AB #1
>>> AB #2
>>> AB #2

Documentation