annotate Lib/IMPL/Class/MethodInfo.pm @ 148:e6447ad85cb4

DOM objects now have a schema and schemaSource properties RegExp now can launder data Improved post to DOM transformation (multiple values a now supported) Added new axes to navigation queries: ancestor and descendant minor changes and bug fixes
author wizard
date Mon, 16 Aug 2010 08:26:44 +0400
parents 44977efed303
children 76515373dac0
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
a07a66fd8d5c Added IMPL::Class::MethodInfo
wizard
parents:
diff changeset
4 use base qw(IMPL::Class::MemberInfo);
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;