|
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 | |
|---|
| 12 | module Pugs.Meta |
|---|
| 13 | ( module Pugs.Meta |
|---|
| 14 | , module Pugs.Meta.Str |
|---|
| 15 | , module Pugs.Meta.Perl5 |
|---|
| 16 | -- , module Pugs.Meta.Class |
|---|
| 17 | ) where |
|---|
| 18 | |
|---|
| 19 | import Pugs.Meta.Str |
|---|
| 20 | import Pugs.Meta.Perl5 |
|---|
| 21 | import Pugs.Meta.Class () |
|---|
| 22 | |
|---|
| 23 | -- XXX - Stub definition to work around ghci bug |
|---|
| 24 | pugsMetaLoaded :: () |
|---|
| 25 | pugsMetaLoaded = () |
|---|