1 ---------------------------------------------------------------------
3 ---------------------------------------------------------------------
5 - do not bless methods unless asked
7 We should turn off automagic method blessing for classes which are
8 not explictly asking for a metaclass.
10 ---------------------------------------------------------------------
12 ---------------------------------------------------------------------
14 - Prototype-style example
16 Make a C::MOP::Class subclass which has an AUTOLOAD method, the
17 method will DWIM depending up on the value it is passed.
19 Foo->prototype->say_hello(sub { print "Hello" });
21 This will turn into this:
23 Foo->prototype->add_method('say_hello' => sub { print "Hello" });
25 I am not sure how we should handle non-method arguments, mostly
26 because those would be static prototype variables, which would
27 translate to class package variables.