# # Construct.pm # # Abstract base class for parsed constructs (blocks, etc.). # # Copyright (C) 2002-2005, The Perl Foundation. # This program is free software. It is subject to the same license # as the Parrot interpreter. # # $Id: Construct.pm 16255 2006-12-25 22:20:28Z paultcochrane $ # use strict; use warnings; package Jako::Construct; use base qw(Jako::Processor); sub block { return shift->{BLOCK}; } 1; # Local Variables: # mode: cperl # cperl-indent-level: 4 # fill-column: 100 # End: # vim: expandtab shiftwidth=4: