diff options
author | bscan <10503608+bscan@users.noreply.github.com> | 2023-10-22 14:43:43 -0400 |
---|---|---|
committer | bscan <10503608+bscan@users.noreply.github.com> | 2023-10-22 14:43:43 -0400 |
commit | e151557e427f905a5b19c93eea7ff545d2bdec77 (patch) | |
tree | 76cba589a5fb7ef80017b66f1650d4e353b478c1 /testWorkspace/MyLib | |
parent | ac454e00448672b5785e96d25ea25e45fda135a5 (diff) | |
download | PerlNavigator-e151557e427f905a5b19c93eea7ff545d2bdec77.zip |
Support for POD on Hover and autocompletion
Diffstat (limited to 'testWorkspace/MyLib')
-rw-r--r-- | testWorkspace/MyLib/MyClass.pm | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/testWorkspace/MyLib/MyClass.pm b/testWorkspace/MyLib/MyClass.pm index e581f96..aaf6872 100644 --- a/testWorkspace/MyLib/MyClass.pm +++ b/testWorkspace/MyLib/MyClass.pm @@ -19,6 +19,18 @@ sub inherited_method($self, $foo, $bar) { print "In inherited_method\n"; } + +=head1 NAME + +MyClass: Example documentation +=head1 SYNOPSIS + + use MyClass; + +=cut + + + sub duplicate_method_name { print "In MyObject duplicate_name\n"; } @@ -29,4 +41,9 @@ sub duplicate_method_name { my $genWarning; my $genWarning; -1;
\ No newline at end of file +1; + + +=item duplicate_method_name + +duplicate_method_name prints some information
\ No newline at end of file |