summaryrefslogtreecommitdiff
path: root/testWorkspace
diff options
context:
space:
mode:
authorbscan <10503608+bscan@users.noreply.github.com>2023-10-08 13:51:25 -0400
committerbscan <10503608+bscan@users.noreply.github.com>2023-10-08 13:51:25 -0400
commit8dbe20898d8e3ae0bada281b793574319ded2bea (patch)
tree464f5ec5211a727be95e064e08ba038abc68ce6d /testWorkspace
parentb10cf7b92e4cd133acf8e117f891f2bbfe759589 (diff)
downloadPerlNavigator-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.pl2
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();