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