Changeset 2911 for ext/Perl-MetaClass/lib/Perl/MetaClass.pm
- Timestamp:
- 05/10/05 02:16:17 (4 years ago)
- svk:copy_cache_prev:
- 4437
- Files:
-
- 1 modified
-
ext/Perl-MetaClass/lib/Perl/MetaClass.pm (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
ext/Perl-MetaClass/lib/Perl/MetaClass.pm
r2910 r2911 29 29 # NOTE: 30 30 # the next 2 methods enforce the rule; 31 # ∃MetaClass A, B | A.clsSuper = B ↔ A ∈ B.clsSubClasses31 # ∀ MetaClass A, B | A.clsSuper = B ↔ A ∈ B.clsSubClasses 32 32 # which in english means: 33 33 # A is a superclass of B and A is found within B's list of subclasses … … 73 73 } 74 74 75 # XXX -- what do we do about visibility here? 76 # is it a property of the MetaProperty? or is 77 # it a property of the relationship with the 78 # MetaClass? 79 75 # visibility is not as important on the MetaModel as it is on the real 76 # Class Model. 80 77 sub clsProperties(Str $inv: Array *@properties) returns Hash { 81 78 my %self := get_instance($inv, "Perl::MetaClass"); … … 128 125 129 126 =head1 SYNOPSIS 130 127 131 128 # Package 132 129 # |
