annotate Lib/IMPL/Class/MethodInfo.pm @ 180:d1676be8afcc

Перекодировка в utf-8
author sourcer
date Fri, 30 Dec 2011 23:40:00 +0300
parents 76515373dac0
children 4d0e1962161c
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
133
a07a66fd8d5c Added IMPL::Class::MethodInfo
wizard
parents:
diff changeset
1 use strict;
a07a66fd8d5c Added IMPL::Class::MethodInfo
wizard
parents:
diff changeset
2 package IMPL::Class::MethodInfo;
a07a66fd8d5c Added IMPL::Class::MethodInfo
wizard
parents:
diff changeset
3
165
76515373dac0 Added Class::Template,
wizard
parents: 134
diff changeset
4 use parent qw(IMPL::Class::MemberInfo);
133
a07a66fd8d5c Added IMPL::Class::MethodInfo
wizard
parents:
diff changeset
5
a07a66fd8d5c Added IMPL::Class::MethodInfo
wizard
parents:
diff changeset
6 __PACKAGE__->PassThroughArgs;
a07a66fd8d5c Added IMPL::Class::MethodInfo
wizard
parents:
diff changeset
7
134
44977efed303 Significant performance optimizations
wizard
parents: 133
diff changeset
8 __PACKAGE__->mk_accessors(qw(
44977efed303 Significant performance optimizations
wizard
parents: 133
diff changeset
9 ReturnType
44977efed303 Significant performance optimizations
wizard
parents: 133
diff changeset
10 Parameters
44977efed303 Significant performance optimizations
wizard
parents: 133
diff changeset
11 ));
44977efed303 Significant performance optimizations
wizard
parents: 133
diff changeset
12
180
d1676be8afcc Перекодировка в utf-8
sourcer
parents: 165
diff changeset
13 1;