Skip to content

Commit 37a3744

Browse files
committed
Corrections and reflow
1 parent 23dd291 commit 37a3744

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

doc/Type/Metamodel/MROBasedMethodDispatch.pod6

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ related (usually "super"/"parent") types.
1313
1414
=head2 method find_method
1515
16-
method find_method(Metamodel::MROBasedMethodDispatch:D: $obj, $name, $no_fallback)
16+
method find_method($obj, $name, $no_fallback, *%adverbs)
1717
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
2020
VM-specific sentinel value (typically a low-level NULL value) that can be tested
2121
for with a test for L<definedness|/routine/defined>:
2222
@@ -32,14 +32,15 @@ If C<:no_fallback> is supplied, fallback methods are not considered.
3232
3333
=head2 method find_method_qualified
3434
35-
method find_method_qualified(Metamodel::MROBasedMethodDispatch:D: $obj, $type, $name)
35+
method find_method_qualified($obj, $qtype, $name)
3636
3737
Given a method name and a type, returns the method from that type. This is
3838
used in calls like
3939
4040
=for code :skip-test<code chunk for illustration>
4141
self.SomeParentClass::the_method();
4242
43+
4344
=begin comment
4445
4546
TODO: publish_method_cache

0 commit comments

Comments
 (0)