root/src/Pugs/Meta.hs

Revision 15433, 0.5 kB (checked in by audreyt, 20 months ago)

* Pugs.Meta: GHCi doesn't like empty non-exporting modules.

So we create a stub definition.

  • Property svn:mime-type set to text/plain; charset=UTF-8
  • Property svn:eol-style set to native
Line 
1{-# OPTIONS_GHC -fglasgow-exts #-}
2
3{-|
4    Perl 6 Meta-object definitions.
5
6>   And though I oft have passed them by,
7>   A day will come at last when I
8>   Shall take the hidden paths that run
9>   West of the Moon, East of the Sun.
10-}
11
12module Pugs.Meta
13    ( module Pugs.Meta
14    , module Pugs.Meta.Str
15    , module Pugs.Meta.Perl5
16--  , module Pugs.Meta.Class
17    ) where
18
19import Pugs.Meta.Str
20import Pugs.Meta.Perl5
21import Pugs.Meta.Class ()
22
23-- XXX - Stub definition to work around ghci bug
24pugsMetaLoaded :: ()
25pugsMetaLoaded = ()
Note: See TracBrowser for help on using the browser.