Work in progress on compiler. It's blowing up right now.
[gitmo/MooseX-Compiler.git] / lib / MooseX / Compiler / FakeMoose.pm
1 package MooseX::Compiler::FakeMoose;
2
3 use strict;
4 use warnings;
5
6 use Exporter qw( import );
7
8 our @EXPORT = qw(
9     extends
10     has
11     meta
12     with
13 );
14
15 sub extends { }
16 sub has     { }
17 sub with    { }
18
19 sub meta {
20     die 'meta() is not implemented yet';
21 }
22
23 1;