Commit | Line | Data |
---|---|---|
bdd612ce | 1 | Build.PL |
a2e85e6c | 2 | Changes |
013b1897 | 3 | Makefile.PL |
96ceced8 | 4 | META.yml |
a2e85e6c | 5 | MANIFEST |
6 | README | |
d82060fe | 7 | examples/ArrayBasedStorage.pod |
7be45b35 | 8 | examples/AttributesWithHistory.pod |
96ceced8 | 9 | examples/C3MethodDispatchOrder.pod |
7be45b35 | 10 | examples/ClassEncapsulatedAttributes.pod |
9ec169fe | 11 | examples/InsideOutClass.pod |
12 | examples/InstanceCountingClass.pod | |
aa9c883e | 13 | examples/LazyClass.pod |
9ec169fe | 14 | examples/Perl6Attribute.pod |
550d56db | 15 | lib/metaclass.pm |
a2e85e6c | 16 | lib/Class/MOP.pm |
17 | lib/Class/MOP/Attribute.pm | |
18 | lib/Class/MOP/Class.pm | |
d82060fe | 19 | lib/Class/MOP/Instance.pm |
a2e85e6c | 20 | lib/Class/MOP/Method.pm |
2ba153a9 | 21 | lib/Class/MOP/Module.pm |
716c5765 | 22 | lib/Class/MOP/Object.pm |
2ba153a9 | 23 | lib/Class/MOP/Package.pm |
24 | lib/Class/MOP/Class/Immutable.pm | |
a2e85e6c | 25 | t/000_load.t |
26 | t/001_basic.t | |
27 | t/002_class_precedence_list.t | |
28 | t/003_methods.t | |
29 | t/004_advanced_methods.t | |
30 | t/005_attributes.t | |
550d56db | 31 | t/006_new_and_clone_metaclasses.t |
a2e85e6c | 32 | t/010_self_introspection.t |
33 | t/011_create_class.t | |
34 | t/012_package_variables.t | |
351bd7d4 | 35 | t/013_add_attribute_alternate.t |
550d56db | 36 | t/014_attribute_introspection.t |
448af783 | 37 | t/015_metaclass_inheritance.t |
16dee8b4 | 38 | t/016_class_errors_and_edge_cases.t |
96ceced8 | 39 | t/017_add_method_modifier.t |
46666f33 | 40 | t/018_anon_class.t |
a2e85e6c | 41 | t/020_attribute.t |
16dee8b4 | 42 | t/021_attribute_errors_and_edge_cases.t |
a2e85e6c | 43 | t/030_method.t |
96ceced8 | 44 | t/031_method_modifiers.t |
550d56db | 45 | t/040_metaclass.t |
46 | t/041_metaclass_incompatability.t | |
d82060fe | 47 | t/042_metaclass_incompatibility_dynamic.t |
48 | t/043_instance_metaclass_incompatibility.t | |
49 | t/044_instance_metaclass_incompatibility_dynamic.t | |
69098108 | 50 | t/050_scala_style_mixin_composition.t |
d82060fe | 51 | t/060_instance.t |
52 | t/061_instance_inline.t | |
2ba153a9 | 53 | t/070_immutable_metaclass.t |
373a16ae | 54 | t/071_immutable_w_custom_metaclass.t |
2ba153a9 | 55 | t/080_meta_package.t |
716c5765 | 56 | t/081_meta_package_extension.t |
a2e85e6c | 57 | t/100_BinaryTree_test.t |
b5ace786 | 58 | t/101_InstanceCountingClass_test.t |
a2e85e6c | 59 | t/102_InsideOutClass_test.t |
b5ace786 | 60 | t/103_Perl6Attribute_test.t |
7be45b35 | 61 | t/104_AttributesWithHistory_test.t |
62 | t/105_ClassEncapsulatedAttributes_test.t | |
aa9c883e | 63 | t/106_LazyClass_test.t |
f3f5bd34 | 64 | t/107_C3MethodDispatchOrder_test.t |
d82060fe | 65 | t/108_ArrayBasedStorage_test.t |
ea263060 | 66 | t/200_Class_C3_compatibility.t |
0eff2c16 | 67 | t/300_random_eval_bug.t |
a2e85e6c | 68 | t/pod.t |
69 | t/pod_coverage.t | |
70 | t/lib/BinaryTree.pm |