summaryrefslogtreecommitdiff
path: root/testWorkspace
diff options
context:
space:
mode:
authorbscan <10503608+bscan@users.noreply.github.com>2022-01-30 23:55:35 -0500
committerbscan <10503608+bscan@users.noreply.github.com>2022-01-30 23:55:35 -0500
commit2635d69478326c040df865ece7248c43e2ca9a69 (patch)
treeef12b17dace8cd1083f0134a4afe683c1b6a2a70 /testWorkspace
parentded788f3f55c6382a49872c5f81bdb74f7e09c32 (diff)
downloadPerlNavigator-2635d69478326c040df865ece7248c43e2ca9a69.zip
Get compilation results and code analysis without requiring saving the file
Diffstat (limited to 'testWorkspace')
-rw-r--r--testWorkspace/mainTest.pl8
1 files changed, 4 insertions, 4 deletions
diff --git a/testWorkspace/mainTest.pl b/testWorkspace/mainTest.pl
index d64b141..ca608c7 100644
--- a/testWorkspace/mainTest.pl
+++ b/testWorkspace/mainTest.pl
@@ -56,6 +56,10 @@ foreach my $lexLoopDuplicate (1..3){
print $lexLoopDuplicate;
}
+for (my $cStyleLoopVar = 0; $cStyleLoopVar <= 2; $cStyleLoopVar++){
+ print "$cStyleLoopVar";
+}
+
print imported_constant . "\n";
print $our_variable . "\n";
@@ -112,10 +116,6 @@ my $nonObject = MyLib::MooseClass->new()->moose_sub();
my $hiddenPackObj = MyLib::SubPackage->new();
-for (my $cStyleLoopVar = 0; $cStyleLoopVar <= 2; $cStyleLoopVar++){
- print "$cStyleLoopVar";
-}
-
my $dbh2 = MyLib::DBI->connect();
print "\nDone with test script\n";