@@ -13,10 +13,10 @@ related (usually "super"/"parent") types.
13
13
14
14
= head2 method find_method
15
15
16
- method find_method(Metamodel::MROBasedMethodDispatch:D: $obj, $name, $no_fallback)
16
+ method find_method($obj, $name, $no_fallback, *%adverbs )
17
17
18
- Given a method name, returns the method object of that name which is closest in
19
- the method resolution order (MRO). If no method can be found, it returns a
18
+ Given a method name, it returns the method object of that name which is closest
19
+ in the method resolution order (MRO). If no method can be found, it returns a
20
20
VM-specific sentinel value (typically a low-level NULL value) that can be tested
21
21
for with a test for L < definedness|/routine/defined > :
22
22
@@ -32,14 +32,15 @@ If C<:no_fallback> is supplied, fallback methods are not considered.
32
32
33
33
= head2 method find_method_qualified
34
34
35
- method find_method_qualified(Metamodel::MROBasedMethodDispatch:D: $obj, $type , $name)
35
+ method find_method_qualified($obj, $qtype , $name)
36
36
37
37
Given a method name and a type, returns the method from that type. This is
38
38
used in calls like
39
39
40
40
= for code :skip-test<code chunk for illustration>
41
41
self.SomeParentClass::the_method();
42
42
43
+
43
44
= begin comment
44
45
45
46
TODO: publish_method_cache
0 commit comments