[cage] Add some karma aliases for myself
[parrot.git] / tools / dev / pmctree.pl
blob59f48ffb15176d65e04a707785936d08a44a3c8f
1 #! perl
2 # Copyright (C) 2001-2007, Parrot Foundation.
3 # $Id$
5 use strict;
6 use warnings;
7 use lib qw( lib );
8 use Parrot::Pmc2c::PMC::PrintTree;
10 my ( %action, %options, @pmc_include_paths );
12 my @args = @ARGV;
14 my $self = Parrot::Pmc2c::PMC::PrintTree->new(
16 include => [ qw( src/pmc src/dynpmc ) ],
17 opt => {},
18 args => \@args,
19 bin => q{},
23 $self->print_tree();
24 exit;
26 # Local Variables:
27 # mode: cperl
28 # cperl-indent-level: 4
29 # fill-column: 100
30 # End:
31 # vim: expandtab shiftwidth=4: