comparison Lib/IMPL/Object/List.pm @ 278:4ddb27ff4a0b

core refactoring
author cin
date Mon, 04 Feb 2013 02:10:37 +0400
parents 4d0e1962161c
children cd6c6e61d442
comparison
equal deleted inserted replaced
277:6585464c4664 278:4ddb27ff4a0b
1 package IMPL::Object::List; 1 package IMPL::Object::List;
2 use strict; 2 use strict;
3 use warnings; 3 use warnings;
4 4
5 use parent qw(IMPL::Object::ArrayObject); 5 use parent qw(IMPL::Object::ArrayObject);
6 use IMPL::Exception; 6 require IMPL::Exception;
7 7
8 sub as_list { 8 sub as_list {
9 return $_[0]; 9 return $_[0];
10 } 10 }
11 11