adding in the TODO list
[gitmo/Class-MOP.git] / TODO
CommitLineData
6d682a99 1---------------------------------------------------------------------
2TODO
3---------------------------------------------------------------------
4
5- clean up all ->initialize($_[0]) handling
6
7(DONE)
8
9We should always be sure that $_[0] is a package name, and not
10a blessed intstance.
11
12- make &compute_all_applicable_attributes not return a HASH
13
14(DONE)
15
16All the info in the HASH is discoverable through the meta-object.
17
18- General Purpose &clone_instance method
19
20(PARTIALLY DONE) - need to implement the deep cloning
21
22It can be a method of the metaclass, like construct_instance is,
23actually it should be called clone_instance, and it should
24be thought of as a low-level cloning function, so it should not
25do any blessing or anything of the sort. That is left for the
26class to implement, as is the construct_instance.
27
28- General Purpose &new_object and &clone_object method
29
30I seem to be writing a new method each time, but since we dont
31have a Object class to always inherit from, this is needed.
32However, there is nothing to say that I cannot do something like:
33
34 Foo->meta->new_object()
35
36and ...
37
38 $foo->meta->clone_object()
39
40Give it some more thought, but I think it is the best way to
41approach this.
42
43- Role/Trait/Scalar-style mixin mechanism
44
45This is fairly simple with the MOP, but the trick comes with
46any SUPER:: calls. This will be a very tricky problem I think.
47
48* see Class::Trait::Base, and maybe use anon-classes for this.
49* review the Scalar model for mix-ins
50* I like the Class does Role, Role isa Class from Perl 6 idea.
51
52- metaclass.pm
53
54Should handle metaclass incompatibility issue, and do it through
55class mixin composition.
56
57- Prototype-style example
58
59Make a C::MOP::Class subclass which has an AUTOLOAD method, the
60method will DWIM depending up on the value it is passed.
61
62 Foo->prototype->say_hello(sub { print "Hello" });
63
64This will turn into this:
65
66 Foo->prototype->add_method('say_hello' => sub { print "Hello" });
67
68I am not sure how we should handle non-method arguments, mostly
69because those would be static prototype variables, which would
70translate to class package variables.
71
72- Make a Class::MOP::Package
73
74Class::MOP::Class would be a subclass of this, but I am not sure
75this is worth the time.
76
77
78
79
80