annotate Lib/IMPL/Class/MethodInfo.pm @ 168:6148f89bb7bf

IMPL::SQL::Schema::Traits::Diff alfa version IMPL::lang added hash traits
author sourcer
date Mon, 16 May 2011 04:30:38 +0400
parents 76515373dac0
children d1676be8afcc
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
133
a07a66fd8d5c Added IMPL::Class::MethodInfo
wizard
parents:
diff changeset
13 1;