98fd5f65b09b7bcea64ef06b6f1637f44f000f23
[gitmo/Moose.git] / TODO
1 -------------------------------------------------------------------------------
2 TODO
3 -------------------------------------------------------------------------------
4
5 - make way to iterate over all Moose classes
6
7 - roles
8
9 Need to figure out the details of composite roles
10
11 - type unions
12
13 Add support for doing it with Classes which do not have 
14 a type constraint yet created
15
16 - type intersections
17
18 Mostly just for Roles
19
20 - inherited slot specs
21
22 [10:49] stevan  does can be added to,.. but not changed
23
24 - triggers
25
26 [18:18] mst     what I'd really like is just to say trigger => 'some_method'
27
28 - attribute delgates
29
30 Introduce capability to control the generated wrapper. Useful for when you have
31 a wrapper that should implement the interface of it's child, but decorate with
32 more metadata.
33
34 - proxy attributes
35
36 [15:49]         stevan  you want a proxied attribute
37 [15:49]         stevan  which looks like an attribute, 
38                     talks like an attribute, smells 
39                     like an attribute,.. but if you 
40                     look behind the curtain,.. its 
41                     over there.. in that other object
42
43 - compile time extends
44
45 [00:39]         sri         but maybe a better syntax for compile time extends
46 [00:39]         stevan  I have been pondering that actually
47 [00:39]         sri         use Moose extends => Foo::Bar
48 [00:40]         stevan  I think now that we have the Sub::Exporter stuff 
49                     in, that kinda thing should be pretty easy
50
51 nothingmuch notes that all the constructs should be supported in the entirety of the use clause:
52
53     use Moose (
54         has => foo (
55             ....
56         ),
57     );
58
59 and that if this usage style is used nothing is exported to the namespace.
60
61 - default should dclone()
62
63 - subtype $anon_subtype => where { ... }
64
65 [22:56]         stevan  sub mst_doesnt_like_to_type { (shift)->meta->attr->type_contstraint }
66 [22:57]         mst     err
67 [22:57]         stevan  :P
68 [22:57]         stevan  are you wanting to reuse it or something?
69 [22:57]         stevan  my $subtype = subtype 'Something' => where { ... };
70 [22:58]         stevan  then you can do isa => $subtype 
71 [22:58]         mst     but I can't subtype it again
72 [22:59]         stevan  mst: ahhh... 
73 [22:59]         mst     well, I can. but it suddenly gets very "long way round" ish
74 [23:00]         stevan  my $constraint = Moose::Meta::TypeConstraint->new(
75 [23:00]         stevan              name       => $name || '__ANON__',
76 [23:00]         stevan              parent     => $parent,            
77 [23:00]         stevan              constraint => $check,       
78 [23:00]         stevan              message    => $message,    
79 [23:00]         stevan          );
80 [23:00]         stevan  yeah thats kinda the long way
81 [23:00]         stevan  mst: what would you like it to be?
82 [23:00]         mst     $parent = find_type_constraint($parent) if defined $parent;
83 [23:00]         mst     if $parent is already a type constraint
84 [23:00]         mst     skip that bit
85 [23:00]         stevan  hmm
86 [23:00]         mst     should be all you need to change
87 [23:00]         stevan  yeah
88 [23:01]         stevan  so you can then say 
89 [23:01]         stevan  subtype $anon => where { ... };
90 [23:01]         mst     right
91 [23:01]         stevan  ok
92
93 - method keyword
94
95 [23:37]         mst     more seriously, I'd still like a "method" keyword or something
96 [23:37]         mst     method 'foo' => sub { ... };
97 [23:38]         stevan  what would it do more than sub foo { ... }?
98 [23:39]         stevan  I would like multimethods actually
99 [23:39]         mst     almost exactly nothing, to begin with
100 [23:39]         stevan  but thats just cause I love CLOS and am reading a book on Dylan now
101 [23:40]         stevan  keyword squating :)
102 [23:40]         mst     but if we need to hook stuff later it's bloody handy to already have people writing it that way
103 [23:40]         mst     right
104 ...
105 [23:49]         mst     oh, also: method 'has' => sub { ... } could squelch the redefine warning
106
107 -------------------------------------------------------------------------------
108 TO PONDER
109 -------------------------------------------------------------------------------
110
111 - Moose "strict" mode
112
113 use Moose 'strict'; This would allow us to have all sort of expensive tests
114 which can be turned off in prod.     
115         
116 - Moose::Philosophy.pod
117
118 To explain Moose from a very high level
119
120 - moosedoc
121
122 We certainly have enough meta-information to make pretty complete POD docs.
123         
124         
125