diff options
author | bscan <10503608+bscan@users.noreply.github.com> | 2023-10-08 13:51:25 -0400 |
---|---|---|
committer | bscan <10503608+bscan@users.noreply.github.com> | 2023-10-08 13:51:25 -0400 |
commit | 8dbe20898d8e3ae0bada281b793574319ded2bea (patch) | |
tree | 464f5ec5211a727be95e064e08ba038abc68ce6d /testWorkspace | |
parent | b10cf7b92e4cd133acf8e117f891f2bbfe759589 (diff) | |
download | PerlNavigator-8dbe20898d8e3ae0bada281b793574319ded2bea.zip |
Adding parsing modes. Speeds up parsing if we don't need end lines for subs or packages.
Diffstat (limited to 'testWorkspace')
-rw-r--r-- | testWorkspace/mainTest.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testWorkspace/mainTest.pl b/testWorkspace/mainTest.pl index 491fdaf..02136f4 100644 --- a/testWorkspace/mainTest.pl +++ b/testWorkspace/mainTest.pl @@ -116,7 +116,7 @@ my $otherObj = MyLib::MyOtherClass->new(); $otherObj->unique_method_name(); $otherObj->duplicate_method_name(); -my $unknownObj = $otherObj; # Type hints: $unknownObj2 isa MyLib::MyOtherClass +my $unknownObj = $otherObj; # Type hints: $unknownObj isa MyLib::MyOtherClass $unknownObj->duplicate_method_name(); my $mooObj = MyLib::MooClass->new(); |