Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
Use find-definitions for Type files
This cuts down on a lot of redundancy and allows for the same procedure
to be used in places other than Type files.
=head2 lines in Type files will no longer be assumed to methods, and
this is intentional. Something that would previously be written:
=head2 foo
method foo (|bar) { }
is now written
=head2 method foo
with or without the code line below it. Definitions for things that are
both subs and methods are still possible with, e.g.:
=head2 routine foo
method foo (|bar) { }
sub for ($baz, |bar) { }
Files in the lib/Type dir still must be updated for this change- Loading branch information
Showing
1 changed file
with
44 additions
and
80 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters